-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.37 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.37 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
36
37
38
from __future__ import absolute_import
import setuptools
import json
with open('./metaparticle_pkg/version.json', 'r') as json_file:
config = json.load(json_file)
setuptools.setup(
name='metaparticle_pkg',
version=config['version'],
url='https://github.com/metaparticle-io/package/tree/master/python',
license=config['license'],
description='Easily containerize your python application',
author='Metaparticle Authors',
packages=setuptools.find_packages(),
package_data={},
include_package_data=False,
zip_safe=False,
install_requires=['docker==2.7.0'],
test_require=['pytest', 'flake8'],
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',
]
)