-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (41 loc) · 1.64 KB
/
setup.py
File metadata and controls
46 lines (41 loc) · 1.64 KB
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
import pathlib
from setuptools import find_packages # noqa: F401
from distutils.core import setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name="pythepeer",
version="0.0.6",
description="official python sdk for interacting with thepeer payment processing \
infrastructure",
author="Osagie Iyayi",
packages=find_packages(),
url="https://github.com/thepeerstack/python-sdk",
license="MIT",
install_requires=["httpx"],
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
# as the current state of your package
"Intended Audience :: Developers", # Define that your audience are developers
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License", # Again, pick a license
"Programming Language :: Python :: 3",
# Specify which python versions that you want to support
"Programming Language :: Python :: 3.6",
"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",
"Topic :: Software Development :: Libraries",
],
long_description=README,
long_description_content_type="text/markdown",
keywords=["python", "fintech", "peer-to-peer"],
zip_safe=False,
)