-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (42 loc) · 1.23 KB
/
setup.py
File metadata and controls
48 lines (42 loc) · 1.23 KB
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
47
48
import os
import io
from setuptools import setup, find_packages
__version__ = '0.0.1'
# Helpers
def read(*segments):
path = os.path.join(*segments)
with io.open(path, encoding='utf-8') as f:
return f.read().strip()
README = read('README.md')
setup(
name='os_fdp_adapters',
version=__version__,
description='Convert various data formats into FDP',
long_description=README,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6'
],
keywords='api fiscal datapackage fdp openspending',
author='OpenSpending',
author_email='info@openspending.org',
url='http://github.com/openspending/os-fdp-adapters',
download_url='http://github.com/openspending/os-fdp-adapters',
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',
]
)