forked from Oslandia/pyris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (31 loc) · 1.13 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
# -*- coding: utf-8 -*-
import setuptools
with open("README.rst") as fobj:
LONG_DESCRIPTION = fobj.read()
INSTALL_REQUIRES = ["Flask==1.0.2", "flask-restplus==0.12.1",
"psycopg2-binary", "pyaml", "slumber", "gunicorn==19.9"]
setuptools.setup(
name='pyris',
version='0.7',
license='BSD',
url='https://github.com/garaud/pyris',
packages=setuptools.find_packages(exclude=['data', 'app.yml']),
include_package_data=True,
install_requires=INSTALL_REQUIRES,
# pip install -e .[dev]
extras_require={'dev': ['pytest', 'pytest-sugar', 'ipython', 'ipdb']},
author="Damien Garaud",
author_email='[email protected]',
description="INSEE/IRIS geolocalization",
long_description=LONG_DESCRIPTION,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
]
)