-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·39 lines (35 loc) · 1.51 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·39 lines (35 loc) · 1.51 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
36
37
38
39
import sys
from setuptools import setup
def main():
install_list = ['networkx', 'numpy']
setup(name='paths_graph',
version='0.0.4',
description='Algorithm for analyzing paths in directed graphs.',
long_description='The Paths Graph is a data structure derived from '
'a directed graph that can be used to represent '
'and analyze ensembles of directed (and possibly '
'signed) paths.',
author='John A. Bachman',
author_email='john_bachman@hms.harvard.edu',
url='https://github.com/johnbachman/paths_graph',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
keywords=['graph', 'network', 'path', 'pathway', 'sampling',
'ensemble'],
#project_urls={'Documentation': 'https://paths_graph.readthedocs.io'},
packages=['paths_graph'],
install_requires=install_list,
#tests_require=['nose'],
include_package_data=True,
)
if __name__ == '__main__':
main()