-
Notifications
You must be signed in to change notification settings - Fork 73
/
setup.py
54 lines (48 loc) · 1.54 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
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools 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
tests_require = [
'lockfile>=0.9.1',
'CacheControl>=0.9.2',
'lucene-querybuilder>=0.2',
]
setup(
name='neo4jrestclient',
version=constants.__version__,
author=constants.__author__,
author_email=constants.__email__,
url=constants.__url__,
description=constants.__description__,
long_description=read('README.rst') + "\n\n" + read('CHANGES.txt'),
license=constants.__license__,
keywords='neo4j graph graphdb graphdatabase database rest client driver',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP',
],
zip_safe=False,
packages=[
"neo4jrestclient",
],
include_package_data=True,
install_requires=[
'requests>=2.1.0',
],
tests_require=tests_require,
test_suite='neo4jrestclient.tests',
extras_require={},
)