forked from PY-GZKY/Mofish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (52 loc) · 1.82 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup, find_packages
description = '摸鱼办公室 CLI 版本,支持自定义下班时刻,兼容 Windows/macOS'
with open('README.md', 'r', encoding='UTF-8') as f:
long_description = f.read()
setup(
name='mofish_cli',
version='1.1.5',
description=description,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Framework :: AsyncIO',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Clustering',
'Topic :: System :: Distributed Computing',
'Topic :: System :: Monitoring',
'Topic :: System :: Systems Administration',
],
python_requires='>=3.7',
author='Nyaasu',
author_email='[email protected]',
url='https://github.com/Nyaasu66/Mofish',
license='MIT',
packages=find_packages(),
include_package_data=True,
entry_points="""
[console_scripts]
moyu=mofish_cli.main:cli
""",
install_requires=[
'click>=6.7',
'zhdate',
'blessed',
'colorama'
],
long_description=long_description,
long_description_content_type='text/markdown',
)