-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.22 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import setuptools
import os
exec(open('./metaparticle_sync/version.py').read())
setuptools.setup(
name='metaparticle_sync',
version=__version__,
url='https://github.com/metaparticle-io/sync/tree/master/python',
license=__license__,
description='Easy distributed locks for your python application',
author='Metaparticle Authors',
packages=setuptools.find_packages(),
package_data={},
include_package_data=False,
zip_safe=False,
install_requires=[],
platforms='linux',
keywords=['kubernetes', 'docker', 'container', 'metaparticle'],
# latest from https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
]
)