This repository has been archived by the owner on Sep 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (44 loc) · 1.57 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
40
41
42
43
44
45
46
47
48
49
from setuptools import setup
# versioning
import versioneer
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name="zoop_wrapper",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Imobanco",
description="Cliente não oficial Zoop",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/imobanco/zoop-wrapper",
packages=["zoop_wrapper", "zoop_wrapper.models", "zoop_wrapper.wrapper"],
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Environment :: Web Environment",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: Portuguese (Brazilian)",
"Operating System :: OS Independent",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
"Topic :: Utilities",
"",
"",
],
python_requires=">=3.6",
install_requires=[
"requests>=2.23.0",
"python-decouple>=3.3",
"pycpfcnpj>=1.5.1",
"card-identifier==1.0",
],
keywords="Zoop API client wrapper",
project_urls={
"Documentation": "https://zoop-wrapper.readthedocs.io",
"Source": "https://github.com/imobanco/zoop-wrapper",
"Tracker": "https://github.com/imobanco/zoop-wrapper/issues",
},
)