-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (23 loc) · 802 Bytes
/
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
#!/usr/bin/env python
import sys
from os import path
from setuptools import setup, find_packages
sys.path.append(path.join(path.dirname(__file__), 'src'))
from graph_db import __version__ as version
setup(
name='not4oundGraph DB',
version=version,
description='Simple Distributed Graph Database',
long_description=open(path.join(path.dirname(__file__), 'README.md')).read(),
author='ilya16, zyfto & Borisqa',
url='https://github.com/ilya16/graph-db',
packages=find_packages('src', include=['graph_db', 'graph_db.*']),
package_dir={'graph_db': 'src/graph_db'},
entry_points={
'console_scripts':
['n4Graph = graph_db.console.console:run']
},
test_suite='src.tests',
install_requires=['rpyc'],
package_data={'': ['configs/*']}
)