-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (27 loc) · 854 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
# Written by JasonMo on 2023.06.02
# Copyright (c) 2021-2025 JasonMo All Rights Reserved
from setuptools import *
setup(
name="OwlShell",
version="0.0.1",
author="JasonMo",
author_email="[email protected]",
description="A shell written by python",
packages=['owl', 'owl.commands'],
install_requires=['prettytable>=3.7.0'],
tests_require=['prettytable>=3.7.0'],
python_requires='>=3.10',
classifiers = [
# 发展时期,常见的如下
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# 开发的目标用户
'Intended Audience :: Developers',
# 许可证信息
'License :: OSI Approved :: MIT License',
# 目标 Python 版本
'Programming Language :: Python :: 3.11',
]
)