-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
38 lines (36 loc) · 1.14 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
import pip
from setuptools import setup
setup(
name='aiogremlin',
version='3.3.1',
url='',
license='Apache Software License',
author='davebshow',
author_email='[email protected]',
description='Async Gremlin-Python',
long_description=open('README.txt').read(),
packages=['aiogremlin',
'aiogremlin.driver',
'aiogremlin.driver.aiohttp',
'aiogremlin.process',
'aiogremlin.structure',
'aiogremlin.remote'],
install_requires=[
'aenum>=1.4.5', # required gremlinpython dep
'aiohttp>=2.2.5',
'PyYAML>=3.12',
'six>=1.10.0' # required gremlinpython dep
],
test_suite='tests',
setup_requires=['pytest-runner'],
tests_require=['pytest-asyncio', 'pytest', 'mock'],
classifiers=[
'Development Status :: 4 - Beta',
'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'
]
)