-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (30 loc) · 1.05 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
from setuptools import setup, find_packages
setup(
name='chemgraphbuilder',
version='1.17.0',
packages=find_packages(),
install_requires=[
"beautifulsoup4",
"matplotlib",
"numpy",
"pandas",
"neo4j",
"requests",
"xmltodict",
"setuptools",
"dask",
],
author='Asmaa Ali Abdelwahab',
author_email='[email protected]',
description='A package to build chemical knowledge graphs using data from PubChem and Neo4j',
url='https://github.com/asmaa-a-abdelwahab/ChemGraphBuilder',
entry_points={
'console_scripts': [
'setup-data-folder=chemgraphbuilder.setup_data_folder:main',
'collect-process-nodes=chemgraphbuilder.node_collector_processor:main',
'collect-process-relationships=chemgraphbuilder.relationship_collector_processor:main',
'load-graph-nodes=chemgraphbuilder.graph_nodes_loader:main',
'load-graph-relationships=chemgraphbuilder.graph_relationships_loader:main',
],
},
)