-
Notifications
You must be signed in to change notification settings - Fork 55
/
setup.py
28 lines (28 loc) · 1023 Bytes
/
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
import setuptools
from pathlib import Path
setuptools.setup(
name="sslcommerz-lib",
version=1.0,
description="SSLCOMERZ PAYMENT GATEWAY",
long_description=Path("README.md").read_text(),
author="SSLCOMMERZ Developers",
url="https://github.com/sajanPoddar/sslcommerz-lib-py",
author_email="[email protected]",
keywords=["sslcommerz", "payment", "1.1"],
packages=setuptools.find_packages(exclude=["tests", "data"]),
install_requires=[
"requests",
],
classifiers=(
'Intended Audience :: Developers',
'Natural Language :: English',
"Operating System :: OS Independent",
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries :: Python Modules",
),
)