forked from OpenSpending-Clone/os-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 922 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
from setuptools import setup, find_packages
__version__ = '0.0.1'
setup(
name='os_api',
version=__version__,
description='API for OpenSpending',
long_description='',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
],
keywords='api fiscal datapackage babbage openspending next',
author='OpenSpending',
author_email='[email protected]',
url='https://github.com/openspending/os-api',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'test']),
namespace_packages=[],
package_data={
'': ['*.json'],
},
zip_safe=False,
install_requires=[
# We're using requirements.txt
],
tests_require=[
'tox',
]
)