-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
47 lines (41 loc) · 1.28 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
"""
Gizmo
------
Gizmo is an object graph mapper for Rexster-based graph servers.
"""
import sys
from setuptools import setup, find_packages
install_requires = [
'gremlinpy',
'websockets'
]
# get the version information
exec(open('gizmo/version.py').read())
setup(
name = 'gizmo',
packages = find_packages(),
version = __version__,
description = 'Python OGM for Rexster-based graph servers',
url = 'https://github.com/emehrkay/gizmo',
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 = 'gizmo.test',
)