Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
47 lines (43 loc) · 1.79 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (43 loc) · 1.79 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
importsetuptools
# read the contents of your README file
fromosimportpath
this_directory=path.abspath(path.dirname(__file__))
withopen(path.join(this_directory, 'README.md'), encoding='utf-8') asf:
long_description=f.read()
setuptools.setup(
name='bootpay_backend',
version='2.4.0',
description='bootpay server side plugin for python',
long_description=long_description,
long_description_content_type='text/markdown',
author='bootpay <bootpay.co.kr@gmail.com>',
packages=setuptools.find_packages(),
keyword= ['pg', '결제연동', 'bootpay', 'payment'],
install_requires=[
'requests >= 2.20; python_version >= "3.0"',
'requests[security] >= 2.20; python_version < "3.0"',
],
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
zip_safe=False,
license="MIT",
url='https://github.com/bootpay/backend-python/tree/2-x-development',
classifiers= [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"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 :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)