-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·39 lines (37 loc) · 1.11 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='dbrest',
packages=find_packages(),
author="",
author_email="",
description="The OPV DB rest api ",
long_description=open('README.md').read(),
dependency_links=[
"git+https://github.com/OpenPathView/OPV_DBRest-client.git#egg=opv_api_client-0.2",
"git+https://github.com/OpenPathView/[email protected]#egg=pg_dump_filtered-0.2"
],
install_requires=[
"GeoAlchemy2==0.5.0",
"hug",
"marshmallow-sqlalchemy",
"SQLAlchemy",
"psycopg2-binary",
"opv_api_client",
"gunicorn",
"sqlalchemy-migrate",
"docopt",
"pg_dump_filtered"
],
# Active la prise en compte du fichier MANIFEST.in
include_package_data=True,
url='https://github.com/OpenPathView/OPV_DBRest',
entry_points={
'console_scripts': [
'opv-api=dbrest.__main__:main',
'opv-db-migrate=dbrest.database.create_or_update:main',
'opv-db-export=dbrest.export.__main__:main'
],
}
)