1
|
|
|
import os |
2
|
|
|
import pip |
3
|
|
|
from setuptools import setup |
4
|
|
|
|
5
|
|
|
__author__ = 'Jeffrey Phillips Freeman' |
6
|
|
|
__email__ = '[email protected]' |
7
|
|
|
__license__ = 'Apache License, Version 2.0' |
8
|
|
|
__copyright__ = 'Copyright 2017, CleverThis, Inc. and contributors' |
9
|
|
|
__credits__ = ['David M. Brown - Project founder'] |
10
|
|
|
|
11
|
|
|
with open("README.md", "r") as fh: |
12
|
|
|
long_description = fh.read() |
13
|
|
|
|
14
|
|
|
setup( |
15
|
|
|
name='aiogremlin', |
16
|
|
|
version='3.3.5', |
17
|
|
|
license=__license__, |
18
|
|
|
author=__author__, |
19
|
|
|
author_email=__email__, |
20
|
|
|
description='An asynchronous DSL for the Gremlin-Python driver', |
21
|
|
|
long_description_content_type="text/markdown", |
22
|
|
|
long_description=long_description, |
23
|
|
|
url='http://goblin-ogm.com', |
24
|
|
|
download_url='https://github.com/goblin-ogm/aiogremlin/archive/v3.3.5.tar.gz', |
25
|
|
|
include_package_data=True, |
26
|
|
|
keywords=['Tinkerpop', 'Tinkerpop3', 'gremlin', 'gremlin-python', 'asyncio', 'graphdb'], |
27
|
|
|
packages=['aiogremlin', |
28
|
|
|
'aiogremlin.driver', |
29
|
|
|
'aiogremlin.driver.aiohttp', |
30
|
|
|
'aiogremlin.process', |
31
|
|
|
'aiogremlin.structure', |
32
|
|
|
'aiogremlin.remote'], |
33
|
|
|
python_requires='>=3.5', |
34
|
|
|
install_requires=[ |
35
|
|
|
'gremlinpython<=3.4.3', |
36
|
|
|
'aenum>=1.4.5', # required gremlinpython dep |
37
|
|
|
'aiohttp>=2.2.5', |
38
|
|
|
'PyYAML>=3.12', |
39
|
|
|
'six>=1.10.0', # required gremlinpython dep |
40
|
|
|
'inflection>=0.3.1' |
41
|
|
|
], |
42
|
|
|
test_suite='tests', |
43
|
|
|
setup_requires=['pytest-runner'], |
44
|
|
|
tests_require=['pytest-asyncio', |
45
|
|
|
'pytest-timeout', |
46
|
|
|
'pytest', |
47
|
|
|
'mock'], |
48
|
|
|
classifiers=[ |
49
|
|
|
'Development Status :: 5 - Production/Stable', |
50
|
|
|
'Intended Audience :: Developers', |
51
|
|
|
'License :: OSI Approved :: Apache Software License', |
52
|
|
|
'Operating System :: OS Independent', |
53
|
|
|
'Programming Language :: Python', |
54
|
|
|
'Programming Language :: Python :: 3', |
55
|
|
|
'Programming Language :: Python :: 3.5', |
56
|
|
|
'Programming Language :: Python :: 3.6', |
57
|
|
|
'Programming Language :: Python :: 3.7', |
58
|
|
|
'Programming Language :: Python :: 3.8', |
59
|
|
|
# uncomment if you test on these interpreters: |
60
|
|
|
# 'Programming Language :: Python :: Implementation :: IronPython', |
61
|
|
|
# 'Programming Language :: Python :: Implementation :: Jython', |
62
|
|
|
# 'Programming Language :: Python :: Implementation :: Stackless', |
63
|
|
|
'Programming Language :: Python :: Implementation :: PyPy' |
64
|
|
|
] |
65
|
|
|
) |
66
|
|
|
|