-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
38 lines (35 loc) · 1 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
requires = [
'astroid==2.3.3',
'certifi==2019.11.28',
'chardet==3.0.4',
'idna==2.8',
'isort==4.3.21',
'lazy-object-proxy==1.4.3',
'mccabe==0.6.1',
'requests==2.22.0',
'six==1.13.0',
'typed-ast==1.4.0',
'urllib3==1.26.5',
'wrapt==1.11.2'
]
setuptools.setup(
name="sslcommerz-python",
version="0.0.6",
author="Shahed Mehbub",
author_email="shahed739@gmail.com",
description="Implements SSLCOMMERZ payment gateway in python based web apps.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/shahedex/sslcommerz-payment-gateway-python",
packages=setuptools.find_packages(),
install_requires=requires,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)