-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
41 lines (39 loc) · 1.23 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
from setuptools import setup, find_packages
setup(
version="1.4.0",
author="Paddle and contributors",
author_email="[email protected]",
description="Paddle's Python SDK for Paddle Billing",
keywords=["paddle", "sdk", "python"],
license="Apache-2.0",
name="paddle-python-sdk",
packages=find_packages(),
python_requires=">=3.11",
url="https://developer.paddle.com/api-reference/overview",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
# Full list: https://pypi.org/classifiers/
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
extras_require={
"dev": [
"pytest>=7.4.4,<8.4.0",
"pytest-cov~=4.1.0",
"requests-mock~=1.11.0",
"setuptools>=69.0.3",
"pre-commit>=3.8.0",
"black>=24.8.0",
"flake8>=7.1.1",
],
},
install_requires=[
"requests>=2.31",
"urllib3>=1.26.18",
],
)