-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
40 lines (35 loc) · 1.29 KB
/
setup.py
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
39
#!/usr/bin/env python
import os
import setuptools
def get_long_description():
filename = os.path.join(os.path.dirname(__file__), 'README.md')
with open(filename) as f:
return f.read()
install_requires = ['easydict', 'dacite', 'kubernetes', 'docker']
install_requires += ['dataclasses;python_version<"3.7"']
setuptools.setup(name='lightex',
version='0.0.5.2',
description="LightEx: A Light Experiment Manager",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author='Nishant Sinha',
author_email='nishant@offnote.co',
url='https://github.com/ofnote/lightex',
license='Apache 2.0',
platforms=['POSIX'],
packages=setuptools.find_packages(),
#entry_points={},
scripts=['scripts/lx'],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
python_requires='>3.6.0',
setup_requires=install_requires,
install_requires=install_requires,
)