-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (28 loc) · 859 Bytes
/
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
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='ArangoFlow',
version='0.01',
description='A python package for managing experiments with ArangoDB',
long_description='',
url='',
author='Tariq Daouda',
author_email='You can figure it out with google',
license='ApacheV2',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
install_requires=['grequests', "pyArango"],
keywords='',
packages=find_packages(),
entry_points={
'console_scripts': [
'sample=sample:main',
],
},
)