-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
46 lines (41 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
40
41
42
43
44
45
46
#!/usr/bin/env python
"""
Empowering
======
Python library for the Empowering REST API.
:copyright: (c) 2013 by GISCE-TI, S.L., see AUTHORS for more details.
:license: MIT, see LICENSE for more details.
"""
from setuptools import setup, find_packages
tests_require = [
'Flask'
]
install_requires = [
'libsaas>=0.4',
'marshmallow>=2.13.5',
'times',
'arrow'
]
setup(
name='empowering',
version='0.15.4',
author='GISCE-TI, S.L.',
author_email='[email protected]',
url='http://code.gisce.net/empowering',
description='Python library for the Empowering REST API.',
long_description=__doc__,
license='MIT',
packages=find_packages(exclude=['tests', 'test']),
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
extras_require={'test': tests_require},
test_suite='nose.collector',
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)