-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
61 lines (56 loc) · 1.59 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
56
57
58
59
60
61
# -*- encoding: utf-8 -*-
'''
_______________________ ________________
__ __ \__ /____ _/_ | / /_ __ \_ ___/
_ / / /_ / __ / __ | / /_ / / /____ \
/ /_/ /_ /____/ / __ |/ / / /_/ /____/ /
\____/ /_____/___/ _____/ \____/ /____/
@File : setup.py
@Author : lunzhiPenxil仑质
@Contact : [email protected]
@License : AGPL
@Copyright : (C) 2020-2021, OlivOS-Team
@Desc : None
'''
import setuptools
with open('README.md', 'r', encoding = 'utf-8') as f:
long_description = f.read()
setuptools.setup(name='olivos',
version='0.11.48',
description='OlivOS - Witness Union',
long_description=long_description,
long_description_content_type='text/markdown',
author='OlivOS-Team',
author_email='[email protected]',
url='https://github.com/OlivOS-Team/OlivOS',
install_requires=[
'flask',
'Werkzeug==2.2.2',
'gevent',
'psutil',
'requests',
'pybase64',
'websockets',
'websocket-client',
'pillow==9.3.0',
'rsa',
'requests_toolbelt',
'pystray',
'aiohttp',
'qrcode',
'brotli',
'pyjson5',
'pywebview',
'filetype',
'grpcio',
'grpcio-tools',
'protobuf',
],
license='AGPLv3 License',
packages=setuptools.find_packages(),
classifiers=[
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python :: 3'
],
)