-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (46 loc) · 1.64 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
import setuptools
from proxypay import __version__ as VERSION
# Long Description
with open("README.md", "r") as readme_file:
readme = readme_file.read()
setuptools.setup(
name="django-proxypay",
version=VERSION,
description=(
"Django Proxypay is a Django Framework application/library that facilitates the integration of your Django project with the"
"Proxypay API. Allowing to generate referrals, recognize payments and look through Proxypay's webhooks"
),
long_description=readme,
long_description_content_type="text/markdown",
author="Ageu Matheus",
author_email="txiocoder@gmail.com",
maintainer="Ageu Matheus",
maintainer_email="txiocoder@gmail.com",
url="https://github.com/txiocoder/django-proxypay",
project_urls={
"Changelog": (
"https://github.com/txiocoder/django-proxypay"
+ "/blob/master/HISTORY.md"
)
},
packages=setuptools.find_packages(),
license="MIT License",
keywords=["django", "payments", "proxypay", "django-proxypay" ],
install_requires=[
"Django>=3",
"requests>=2",
"django-admin-display"
],
python_requires=">=3.8",
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)