-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (30 loc) · 997 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
29
30
31
32
33
34
35
36
# coding=utf-8
from setuptools import setup, find_packages
# Distribute py wheels
# python3 setup.py bdist_wheel sdist
# twine check dist/*
# cd dist
# twine upload * -u __token__ -p pypi-token
# python setup.py install
long_description =""
install_requires =""
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding='utf-8') as r:
install_requires = r.readlines()
setup(
name="pyquickwebgui",
version="0.0.2",
description="Create desktop applications with Flask/Django/FastAPI/web.py!",
url="https://github.com/iiixxxiii/pyquickwebgui",
author="iiixxxiii",
author_email="[email protected]",
license="MIT",
py_modules=["pyquickwebgui"],
install_requires=install_requires,
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
python_requires='>=3.6', # Python的版本约束
package_dir={"": "src"},
)