-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (37 loc) · 1.24 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
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.1.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='[email protected], [email protected]',
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',
extras_require={
'dev': [
'black',
'bumpver',
'isort',
'pip-tools',
'pytest',
],
'data-bridges-utils': [],
'data-bridges-utils-STATA': [
'stata-setup',
'pystata',
],
'data-bridges-utils-R': [],
},
)