-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 1.02 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='argendolar',
version='3.0.0',
packages=find_packages(),
install_requires=['pandas', 'requests', 'matplotlib'],
author='Mariano Gobea Alcoba',
author_email='[email protected]',
description='A package to get the exchange rates of the different types of dollars and others currencies in Argentina.',
long_description=long_description, # Usa el contenido del README.md como descripción larga
long_description_content_type="text/markdown", # Especifica el tipo de contenido como markdown
url='https://github.com/Mgobeaalcoba/argendolar',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
python_requires='>=3.8',
)