-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (51 loc) · 1.71 KB
/
setup.py
File metadata and controls
59 lines (51 loc) · 1.71 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
57
58
59
import pathlib
from setuptools import setup, find_packages
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name='click-sdk',
version='0.1.2',
description='Python package for Click payment gateway integration',
license='MIT',
author="Jahongir Hakimjonov",
author_email='jahongirhakimjonov@gmail.com',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/JahongirHakimjonov/click-sdk',
packages=find_packages(),
python_requires='>=3.6',
install_requires=[
'requests>=2.0,<3.0',
"dataclasses>=0.6,<1.0; python_version<'3.7'",
],
extras_require={
'django': [
'django>=3.0,<5.0',
'djangorestframework>=3.0,<4.0',
],
'fastapi': [
'sqlalchemy>=1.4,<3.0',
'httpx>=0.20,<1.0',
'python-multipart==0.0.20',
'pydantic>=1.8,<2.0',
],
},
keywords=[
"click-sdk"
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)