-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.04 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
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
VERSION = '0.0.1'
DESCRIPTION = 'Este paquete nos permite consumir el API de falabella'
PACKAGE_NAME = 'FalabellaAPIClient'
AUTHOR = 'Camilo Andrés Rodríguez Higuera'
EMAIL = 'andres.roh@outlook.com'
GITHUB_URL = 'https://github.com/andresroh/FalabellaAPIClient'
setup(
name=PACKAGE_NAME,
packages=[PACKAGE_NAME],
version=VERSION,
license='MIT',
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
author=AUTHOR,
author_email=EMAIL,
url=GITHUB_URL,
keywords=['python', 'alegra', 'alegra.com'],
install_requires=[
'requests',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)