-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (36 loc) · 1.03 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
39
40
from setuptools import setup, find_packages
"""
打包指令: python3 setup.py sdist
python3 -m twine upload dist/*
"""
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="pyhpweb",
version="0.1.1",
description="Web 服务端,在请求页面时后端执行 Html 文件中的 Python 代码生成动态网页 (类似 PHP)",
keywords=[
"web",
"server",
"html",
"Hypertext-Preprocessor"
],
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
url="https://github.com/FengLiuFeseliud/PyHP-web",
author="FengLiuFeseliud",
author_email="17351198406@qq.com",
packages=find_packages(),
include_package_data=True,
platforms="any",
install_requires=[
"aiofiles",
"regex"
],
python_requires='>=3.9'
)