-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·34 lines (30 loc) · 1.02 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
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
from os.path import abspath, dirname, join
with open(join(dirname(abspath(__file__)), 'adam', 'version.py')) as version_file:
exec(compile(version_file.read(), "version.py", 'exec'))
setup(name='adam',
version=version,
author='Marjorie Freedman, Ryan Gabbard, Jacob Lichtefeld, Mitch Marcus, Ralph Weischedel, and Charles Yang',
author_email='[email protected]',
description="ADAM",
url='https://github.com/isi-vista/adam',
packages=[],
# 3.7 and up, but not Python 4
python_requires='~=3.7',
install_requires=[
"attrs>=18.2.0",
"vistautils>=0.12.0",
"immutablecollections>=0.8.0",
"networkx>=2.3",
"more-itertools>=7.2.0"
],
scripts=[
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)