-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (31 loc) · 895 Bytes
/
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
"""Install siptools-research package."""
from setuptools import setup, find_packages
def main():
"""Install siptools-research."""
setup(
name='siptools-research',
packages=find_packages(exclude=['tests', 'tests.*']),
package_data={'siptools_research': ['schemas/*.json']},
python_requires='>=3.6',
include_package_data=True,
setup_requires=['setuptools_scm'],
use_scm_version=True,
install_requires=[
"lxml",
"luigi",
"pymongo",
"requests",
"paramiko",
"jsonschema",
"iso-639",
"python-dateutil",
"click",
],
entry_points={
'console_scripts': [
'siptools-research = siptools_research.__main__:main'
]
}
)
if __name__ == '__main__':
main()