-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (31 loc) · 900 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
# Copyright (c) yibocat 2023 All Rights Reserved
# Python: 3.10.9
# Date: 2023/9/21 下午8:25
# Author: yibow
# Email: yibocat@yeah.net
# Software: MohuPy
from setuptools import setup, find_packages
from information import *
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name=about['name'],
packages=find_packages(),
description=about['description'],
long_description=long_description,
long_description_content_type="text/markdown",
version=about['version'],
author=about['author'],
author_email=about['email'],
url=about['url'],
license=about['license'],
classifiers=[
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
"License :: OSI Approved :: MIT License",
],
python_requires='>=3.10',
install_requires=install_requires,
)