forked from threatify/arango-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 763 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
requires = ["six", "python-arango>=4.0", "marshmallow"]
setup(
name="arango-orm",
version="0.6.2",
description="A SQLAlchemy like ORM implementation for arangodb",
long_description=(
"A SQLAlchemy like ORM implementation using "
" python-arangoas the backend library"
),
classifiers=["Programming Language :: Python"],
author="Kashif Iftikhar",
author_email="kashif@compulife.com.pk",
url="https://github.com/threatify/arango-orm",
download_url="https://github.com/threatify/arango-orm/archive/v0.5.7.tar.gz",
license="GNU General Public License v3 (GPLv3)",
keywords="arangodb orm python",
packages=find_packages(),
install_requires=requires,
)