forked from versae/neo4j-rest-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (36 loc) · 1.15 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from distutils.core import setup
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
# Dynamically get the constants.
constants = __import__('neo4jrestclient.constants').constants
setup(
name='neo4jrestclient',
version=constants.__version__,
author=constants.__author__,
author_email=constants.__email__,
url=constants.__url__,
description=constants.__description__,
long_description=read('README.txt') + "\n\n" + read('CHANGES.txt'),
license=constants.__license__,
keywords='neo4j graph graphdb graphdatabase database rest client',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
zip_safe=False,
packages=[
"neo4jrestclient",
],
include_package_data=True,
install_requires=[
'httplib2',
'lucene-querybuilder==0.1.5',
],
)