-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (51 loc) · 2.13 KB
/
setup.py
File metadata and controls
56 lines (51 loc) · 2.13 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
47
48
49
50
51
52
53
54
55
56
import os
from setuptools import setup, find_packages
ROOT_DIR = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(ROOT_DIR, "README.md"), encoding="utf-8") as f:
long_description = f.read()
version_contents = {}
with open(os.path.join(ROOT_DIR, "buckaroo", "_version.py"), encoding="utf-8") as f:
exec(f.read(), version_contents)
setup(
name="buckaroo-sdk",
version=version_contents["VERSION"],
description="Python bindings for the Buckaroo API",
long_description=long_description,
long_description_content_type="text/markdown",
author="Buckaroo",
author_email="support@buckaroo.nl",
url="https://github.com/buckaroo-it/BuckarooSDK_Python",
license="MIT",
keywords="buckaroo api payments",
packages=find_packages(exclude=["tests", "tests.*"]),
package_data={"buckaroo": ["py.typed"]},
zip_safe=False,
install_requires=[
"typing_extensions >= 4.5.0",
"requests >= 2.20",
],
python_requires=">=3.9",
project_urls={
"Homepage": "https://www.buckaroo.nl",
"Bug Tracker": "https://github.com/buckaroo-it/BuckarooSDK_Python/issues",
"Changes": "https://github.com/buckaroo-it/BuckarooSDK_Python/blob/master/CHANGELOG.md",
"Documentation": "https://github.com/buckaroo-it/BuckarooSDK_Python#readme",
"Source Code": "https://github.com/buckaroo-it/BuckarooSDK_Python/",
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)