-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 673 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 673 Bytes
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
from setuptools import setup
setup(
name="gremlinrestclient",
version="0.0.11",
url="",
license="MIT",
author="davebshow",
author_email="davebshow@gmail.com",
description="Python client for Gremlin Server REST endpoint",
long_description=open("README.txt").read(),
packages=["gremlinrestclient", "tests"],
install_requires=[
"requests>=2.7.0"
],
test_suite="tests",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python'
]
)