-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
·52 lines (46 loc) · 1.4 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='synthetic',
version='0.0.1',
author='Telmo Menezes et al.',
author_email='[email protected]',
description='Symbolic generators for complex networks',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://ai4socialscience.github.io/synthetic/',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Sociology'
],
packages=find_packages(),
install_requires=[
'numpy',
'python-igraph',
'pyemd',
'progressbar2',
'termcolor',
'jupyter'
],
extras_require={
'dev': [
'sphinx',
'sphinx_rtd_theme'
]
},
entry_points='''
[console_scripts]
synth=synthetic.cli:cli
'''
)