forked from arangodb/python-arango
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 1.24 KB
/
Copy pathsetup.py
File metadata and controls
42 lines (39 loc) · 1.24 KB
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
from setuptools import setup, find_packages
version = {}
with open("./arango/version.py") as fp:
exec(fp.read(), version)
with open('./README.rst') as fp:
description = fp.read()
setup(
name='python-arango',
description='Python Driver for ArangoDB',
long_description=description,
version=version['__version__'],
author='Joohwan Oh',
url='https://github.com/joowani/python-arango',
packages=find_packages(exclude=['tests']),
include_package_data=True,
install_requires=['requests', 'six'],
tests_require=[
'pytest-cov',
'python-coveralls',
'mock',
'pytest',
],
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Documentation :: Sphinx'
]
)