forked from rachpt/lanzou-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (37 loc) · 1.1 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
from lanzou.gui import version
setup(
name='lanzou-gui',
version=version,
description='Lanzou Cloud GUI',
license="MIT",
author='rachpt',
author_email='[email protected]',
packages=find_packages(),
package_data={
'': []
},
python_requires=">=3.6",
url='https://github.com/rachpt/lanzou-gui',
keywords=['lanzou', 'lanzoucloud', 'gui', 'application', 'PyQt6', 'Python 3'],
classifiers=(
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
'Environment :: X11 Applications :: Qt',
'Topic :: Internet',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
),
install_requires=[
'PyQt6',
'PyQtWebEngine',
'requests',
'requests_toolbelt',
'browser_cookie3',
],
)