-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 995 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (28 loc) · 995 Bytes
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
import setuptools
# to upload
# python3 -m build
# python3 -m twine upload --repository pypi dist/*
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="qiwi_handler",
version="0.2.1",
author="bezumnui",
author_email="bezumnui.mistikgt@gmail.com",
description="Обертка с обработчиком для qiwi",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bezumnui/qiwi_handler/",
project_urls={
"Bug Tracker": "https://github.com/bezumnui/qiwi_handler/issues",
"Get Qiwi Token": "https://qiwi.com/api"
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "qiwi_handler"},
packages=setuptools.find_packages(where='qiwi_handler'),
python_requires=">=3.6",
)