-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
39 lines (36 loc) · 1.39 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
from setuptools import setup
from pathlib import Path
VERSION = "2.0.0"
THIS_PATH = Path(__file__).parent
DESCRIPTION = "Python API for Banco Central de la República Argentina (BCRA)"
LONG_DESCRIPTION = (THIS_PATH / "README.md").read_text(encoding="utf-8")
setup(
name="bcraapi",
version=VERSION,
url="https://github.com/Jaldekoa/BCRA-Wrapper",
author="Jon Aldekoa",
author_email="[email protected]",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
packages=["bcraapi"],
test_suite='bcraapi.tests.test',
platforms=["Any"],
install_requires=["pandas", "requests"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
)