-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.33 KB
/
setup.py
File metadata and controls
43 lines (40 loc) · 1.33 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
import os
from setuptools import setup, find_packages
# Read the contents of your README file
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="fib-python-payment-sdk",
version='0.4.0',
description="SDK for integrating with the FIB payment system, enabling user authentication and payment "
"transactions.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://the-gw.com/",
author="Gateway ICT",
author_email="info@the-gw.com",
license="MIT",
keywords=["sdk", "fib", "payment", "integration"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=[
"httpx>=0.27.0,<1.0.0",
],
extras_require={
"dev": [
"pytest>=6.0.0"
]
},
python_requires=">=3.7, <4",
include_package_data=True,
)