-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.44 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
"""Packaging."""
from pathlib import Path
from setuptools import find_packages, setup
with Path("README.md").open() as file:
long_description = file.read()
setup(
name="zenopay",
version="0.0.8",
description="A Python wrapper for ZenoPay Payment API.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jovyinny/zenopay",
author="Jovine Mutelani",
author_email="jovinerobotics@gmail.com",
packages=find_packages(exclude=["tests", "tests.*"]),
license="MIT",
keywords=[
"zenopay",
"zenopay SDK",
"zeno pay SDK",
"ZenoPay Wrapper",
],
project_urls={
"Bug Tracker": "https://github.com/jovyinny/zenopay/issues",
"Documentation": "https://jovyinny.github.io/zenopay/",
"Source Code": "https://github.com/jovyinny/zenopay",
},
python_requires=">=3.7",
install_requires=["requests", "phonenumbers", "pydantic"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)