-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·38 lines (34 loc) · 1.36 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
#!/usr/bin/env python
from distutils.core import setup
from os.path import abspath, dirname, join
from setuptools import find_packages
with open(join(dirname(abspath(__file__)), 'vistautils', 'version.py')) as version_file:
exec(compile(version_file.read(), "version.py", 'exec'))
setup(name='vistautils',
version=version,
author='Ryan Gabbard <[email protected]> and Constantine Lignos <[email protected]>',
author_email='[email protected]',
description="Python utilities developed by USC ISI's VISTA center",
url='https://github.com/isi-vista/vistautils',
packages=['vistautils', 'vistautils.scripts'],
# 3.6 and up, but not Python 4
python_requires='~=3.6',
install_requires=[
'immutablecollections>=0.9.0',
'attrs>=19.2.0',
'pyyaml>=5.1',
'typing_extensions',
'sortedcontainers>=2.1.0',
'deprecation>=2.1.0'
],
package_data={'vistautils': ['py.typed']},
scripts=["vistautils/scripts/join_key_value_stores.py",
"vistautils/scripts/split_key_value_store.py",
"vistautils/scripts/tar_gz_to_zip.py",
"vistautils/scripts/downsample_key_value_store.py"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)