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 0
/
Copy pathsetup.py
44 lines (39 loc) · 1.5 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
from setuptools import setup
# versioning
import versioneer
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name="imopay_wrapper",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Imobanco",
description="Cliente oficial imobanco",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/imobanco/imopay-wrapper",
packages=["imopay_wrapper", "imopay_wrapper.wrapper", "imopay_wrapper.models"],
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.7",
install_requires=["requests>=2.23.0", "python-decouple>=3.3"],
keywords="Imopay API client wrapper",
project_urls={
"Documentation": "https://imopay-wrapper.readthedocs.io",
"Source": "https://github.com/imobanco/imopay-wrapper",
"Tracker": "https://github.com/imobanco/imopay-wrapper/issues",
},
)