-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 708 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
setup(name='NeoGraph',
version='0.2',
description='NetworkX Graph Syncing with neo4j: NeoGraphs',
long_description=("NeoGraph class extends NetworkX DiGraphs by enabling"
"syncing with a neo4j DBMS. For detailed usage instructions visit"
"https://github.com/danielfrees/neograph#readme"
),
author='Daniel Frees',
author_email='danielfrees247@gmail.com',
maintainer = "Daniel Frees",
url='https://github.com/danielfrees/neograph',
packages=['neograph'],
python_requires='>=3.8',
install_requires=[
'networkx',
'matplotlib',
'numpy',
'neo4j'
],
keywords='graph, networkx, neo4j'
)