-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 860 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 860 Bytes
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
from distutils.core import setup
VERSION = '1.1.0'
setup(
name='stargate-x',
packages=['stargate_x'],
version=VERSION,
description=(
'''
The package is a python implementation of a bipartite directed
multigraph extracted from the Reactome database.
Its underlying implementation uses `networkx`.
'''
),
author='Andrea Marino',
author_email='am.marinoandrea@gmail.com',
url='https://github.com/marinoandrea/stargate-x',
download_url=(
f'https://github.com/marinoandrea/stargate-x/tarball/{VERSION}'
),
keywords=['reactome', 'pathway', 'pathways', 'graph', 'bipartite'],
install_requires=['networkx', 'neo4j'],
include_package_data=True,
package_data={
'stargate_x': [
'data/*.pickle',
'queries/*.cypher'
],
}
)