-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 1.39 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
from setuptools import setup, find_packages
import os
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setup(name='pygfile', # 包名 别人安装时就是用此名来按照 如:pip install pyutilitytool
version='0.0.7', # 包的版本号
description='Python加密文件。', # 包的介绍、概述
author='郭若垚', # 包的作者
author_email='yao1127@aliyun.com', # 邮箱
url='https://github.com/Gry321/pygfile', # 项目源代码地址 一般的填git地址
packages=find_packages(), # Python导入包的列表 可以find_packages() 来自动收集
long_description=long_description, # 项目的描述 读取README.md文件的信息
long_description_content_type="text/markdown", # 描述文档README的格式 一般md
license="GPLv3", # 开源协议
# 这 需要去官网查,在下边提供了许可证连接 或者 你可以直接把我的粘贴走
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"],
python_requires='>=2.8', # Python的版本约束
# 其他依赖的约束
install_requires=[],
)
"""
if __name__ == "__main__":
os.chdir(os.path.dirname(__file__))
os.system("python setup.py sdist bdist_wheel")
"""