-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (38 loc) · 1.54 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
41
# -*- coding: utf-8 -*-
import setuptools
import TrimLog
print("TrimLog version: " + TrimLog.__version__)
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="TrimLog",
version=TrimLog.__version__,
author="FedDragon1, Eilles Wan, bgArray", # 2333 你太谦虚了,你应该放在第一个的 ——EW2BA
author_email="TriM-Organization@hotmail.com",
description="TriMO组织的python项目log和项目管理框架库。\n"
" The Python project log and project management framework library for TriM Organization.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TriM-Organization/TrimLog",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: Chinese (Simplified)",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
# 需要安装的依赖
install_requires=[
"rich>=10.9.0",
"setuptools",
],
)