forked from MulanRevive/mulan-rework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.06 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
import setuptools
with open("README.md", encoding="utf-8", mode="r") as readme:
longDescription = readme.read()
setuptools.setup(
name="ulang",
# 木兰/__init__.py 中保持一致
version="0.0.22",
license="GNU GPLv3",
author="吴烜",
author_email="[email protected]",
entry_points = {
"console_scripts": ['木兰 = 木兰.中:中']
},
description="木兰编程语言重现",
long_description=longDescription,
long_description_content_type="text/markdown",
url="https://www.oschina.net/p/mulan-rework",
project_urls={
"Source": "https://gitee.com/MulanRevive/mulan-rework",
"Changelog": "https://gitee.com/MulanRevive/mulan-rework#版本历史介绍",
},
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
],
install_requires=[
'rply-ulang',
'codegen',
],
python_requires="== 3.7.*"
)