forked from ltutech/ltuengine-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (31 loc) · 842 Bytes
/
setup.py
File metadata and controls
executable file
·35 lines (31 loc) · 842 Bytes
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
#!/usr/bin/env python
from setuptools import setup
VERSION = "1.2"
DESCRIPTION = "LTU Engine API Python client."
PARAMETERS = {
'name': 'ltuengine-python-client',
'description': DESCRIPTION,
'packages': [
'ltu.engine',
'ltu'
],
'namespace_packages': ['ltu'],
'package_dir': {
'ltu.engine': 'ltu/engine',
'ltu': 'ltu'
},
'install_requires': ['begins==0.9',
'coloredlogs==5.1.1',
'mock==2.0.0',
'requests==2.10.0',
'tqdm==4.11.0',
'unittest2==1.1.0'],
'author': "JASTEC France",
'author_email': "support@jastec.fr",
'maintainer': "JASTEC France",
'maintainer_email': "support@jastec.fr",
'license': "LICENSE",
'version': VERSION,
}
if __name__ == "__main__":
setup(**PARAMETERS)