-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
44 lines (39 loc) · 1.1 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
"""Setup for ReGraph."""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='regraph',
version='2.0.1',
description='Graph rewriting and graph-based knowledge representation framework',
author='Eugenia Oshurko',
author_email='[email protected]',
license='MIT License',
long_description=long_description,
long_description_content_type="text/markdown",
url="http://dev.executableknowledge.org/ReGraph/",
packages=[
'regraph',
'regraph.backends.neo4j',
'regraph.backends.neo4j.cypher_utils',
'regraph.backends.networkx'],
package_dir={"regraph": "regraph"},
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
"matplotlib",
"networkx",
"numpy",
"pyparsing",
"lrparsing",
"sympy",
"greenery",
"neo4j-driver",
"neobolt"
]
)