-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
47 lines (42 loc) · 1.33 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
"""
Pypher
------
Pypher is graph abstraction layer that converts Python objects
to Cypher strings complete with bound parameters.
"""
import sys
from setuptools import setup, find_packages
install_requires = [
'prompt_toolkit',
'six'
]
# get the version information
exec(open('pypher/version.py').read())
setup(
name = 'python_cypher',
packages = find_packages(),
version = __version__,
description = 'Cypher Statement Builder for Python',
url = 'https://github.com/emehrkay/pypher',
author = 'Mark Henderson',
author_email = '[email protected]',
long_description = __doc__,
install_requires = install_requires,
classifiers = [
'License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2.7',
'Environment :: Web Environment',
'Topic :: Database',
'Topic :: Database :: Front-Ends',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Distributed Computing',
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: MacOS :: MacOS X',
],
test_suite = 'pypher.test',
)