-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 797 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (20 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name="enzona-api",
version="0.1.2",
description="Enzona's payment platform API access library",
author="Josué Carballo Baños",
author_email='josueccb@yandex.com',
license="GPL 3.0",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MoonMagiCreation/enzona_api",
packages=find_packages(),
install_requires=["requests>=2.23.0", "bs4>=0.0.1", "qrcode>=6.1"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
],
python_requires='>=3.5',
)