-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (43 loc) · 1.36 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
import os
from setuptools import setup, find_packages
# Get the long description from the README file
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='data_bridges_knots',
version='0.2.0',
description='Wrapper for Data Bridges API client',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/WFP-VAM/DataBridgesKnots',
author='Alessandra Gherardelli, Valerio Giuffrida',
author_email='alessandra.gherardelli@wfp.org, valerio.giuffrida@wfp.org',
license='GNU General Public License v3 or later (GPLv3+)',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
],
keywords=['VAM', 'WFP', 'data'],
packages=find_packages(exclude=['tests', 'tests.*']),
python_requires='>=3.9',
install_requires=[
'PyYAML',
'pandas>=2',
'pystata',
'stata-setup',
'data-bridges-client @ git+https://github.com/WFP-VAM/DataBridgesAPI.git',
],
extras_require={
'dev': [
'black',
'bumpver',
'isort',
'pip-tools',
'pytest',
],
'STATA': [
'stata-setup',
'pystata',
],
'R': [],
},
)