-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (34 loc) · 960 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
35
36
from setuptools import setup, find_packages
requirements = """
lxml>=4.6.1
datetime-quarter==1.0.3
requests>=2.24.0
exchangerates>=0.3.4
pandas>=1.1.4
numpy>=1.19.4
PyExcelerate>=0.9.0
openpyxl>=3.0.10
iatikit>=3.3.1
"""
setup(
name="iatiflattener",
packages=find_packages(exclude=['ez_setup', 'examples']),
version='0.10.11',
description="A set of tools to flatten IATI data.",
author="Mark Brough",
author_email="[email protected]",
url="https://github.com/iati-data-access/iati-flattener",
license="AGPLv3+",
install_requires=requirements.strip().splitlines(),
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Programming Language :: Python :: 3.9'
],
namespace_packages=[],
include_package_data=True,
zip_safe=False,
entry_points={
}
)