-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
66 lines (63 loc) · 2.4 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
55
56
57
58
59
60
61
62
63
64
65
66
import os
import pip
from setuptools import setup
__author__ = 'Jeffrey Phillips Freeman'
__email__ = '[email protected]'
__license__ = 'Apache License, Version 2.0'
__copyright__ = 'Copyright 2017, CleverThis, Inc. and contributors'
__credits__ = ['David M. Brown - Project founder']
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='gremlinpy',
version='3.3.5',
license=__license__,
author=__author__,
author_email=__email__,
description='An asynchronous DSL for the Gremlin-Python driver',
long_description_content_type="text/markdown",
long_description=long_description,
url='http://goblin-ogm.com',
download_url='https://github.com/goblin-ogm/gremlinpy/archive/v3.3.5.tar.gz',
include_package_data=True,
keywords=['Tinkerpop', 'Tinkerpop3', 'gremlin', 'gremlin-python', 'asyncio', 'graphdb'],
packages=['gremlinpy',
'gremlinpy.driver',
'gremlinpy.driver.aiohttp',
'gremlinpy.process',
'gremlinpy.structure',
'gremlinpy.remote'],
python_requires='>=3.5',
install_requires=[
'wheel==0.40.0',
'gremlinpython<=3.4.3',
'aenum>=1.4.5', # required gremlinpython dep
'aiohttp>=2.2.5',
'PyYAML>=3.12',
'six>=1.10.0', # required gremlinpython dep
'inflection>=0.3.1'
],
test_suite='tests',
setup_requires=['pytest-runner'],
tests_require=['pytest-asyncio',
'pytest-timeout',
'pytest',
'mock'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
# uncomment if you test on these interpreters:
# 'Programming Language :: Python :: Implementation :: IronPython',
# 'Programming Language :: Python :: Implementation :: Jython',
# 'Programming Language :: Python :: Implementation :: Stackless',
'Programming Language :: Python :: Implementation :: PyPy'
]
)