-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (43 loc) · 1.43 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
"""
Flask-Python-Arango
-------------
ArangoDB support for Flask applications.
Flask-Python-Arango is pip-installable:
$ pip install Flask-Python-Arango
Source code is hosted on `GitHub <https://github.com/zvfvrv/flask-python-arango>`.
Contributions are welcome!
"""
from setuptools import find_packages, setup
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name="Flask-Python-Arango",
version="0.0.2",
url="https://github.com/zvfvrv/flask-python-arango",
download_url="https://github.com/zvfvrv/flask-python-arango/tags",
license="Apache-2.0",
author="Francesco Lombardo",
author_email="[email protected]",
description="Python ArangoDB support for Flask applications",
long_description=long_description,
zip_safe=False,
platforms="any",
packages=find_packages(),
install_requires=[
"Flask>=0.12",
"python-arango>=5.4.0",
"six",
],
classifiers=[
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules"
],
)