-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
60 lines (49 loc) · 1.87 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except ImportError:
long_description = open('README.md').read()
# Read version programmatically to avoid loading dependencies from sand/__init__.py
exec(open('sand/__version__.py').read())
setup(
name='sand',
version=__version__,
description='SAND: System Architecture as a Network of Dependencies',
long_description=long_description,
url='https://github.com/testedminds/sand',
author='Bobby Norton',
author_email='[email protected]',
license='Apache License 2.0',
# See: https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
'Environment :: Console',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords=['Architecture', 'Network', 'Graph'],
packages=find_packages(exclude=('docker', 'docs', 'tests')),
include_package_data=True,
install_requires=[
'bokeh>=2.0,<3.0',
'cairocffi>=1.0,<2.0',
'pandas>1.1,<2.0',
'py2cytoscape>=0.7.1,<1.0',
'python-igraph>=0.8.3,<1.0',
],
)