forked from gratelpy/gratelpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.16 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.16 KB
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
from distutils.core import setup
version = __import__('gratelpy').get_version()
setup(
name='GraTeLPy',
version=version,
author='Georg Walther and Matthew Hartley',
author_email='Georg.Walther@jic.ac.uk',
packages=['gratelpy'],
scripts=['bin/subclient.py', 'bin/fragment_server.py', 'bin/check_data.py', 'bin/benchmark.py'],
url='http://pypi.python.org/pypi/GraTeLPy',
license='BSD',
description='Graph theoretic linear stability analysis',
long_description=open('README.md').read(),
classifiers= [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Education',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
],
install_requires=[
"networkx >= 1.7.0"
],
)