-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.12 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.12 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
import setuptools
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
f.close()
setuptools.setup(
name="mctoast",
version="1.20.2",
description="把Minecraft的Toast带到现实里!",
long_description=long_description,
long_description_content_type="text/markdown",
author="SystemFileB",
packages=setuptools.find_namespace_packages(include=["mctoast","mctoast.*"]),
package_data={
'mctoast': ['*'], # 包含mctoast目录下的所有文件
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
],
install_requires=["pillow"],
license="GNU Lesser General Public License v3 (LGPLv3)",
fullname="Minecraft Toast (tkinter)",
url="https://github.com/SystemFileB/mctoast",
include_package_data=True,
entry_points={
'console_scripts': [
'mctoast = mctoast.__main__:mian'
],
'gui_scripts': [
'mctoastw = mctoast.__main__:mian'
],
}
)