-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathsetup.py
46 lines (43 loc) · 1.23 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
import setuptools
import librian
setuptools.setup(
name='librian',
version=librian.__version__,
author='RimoChan',
author_email='the@librian.net',
description='librian',
long_description=open('readme.md', encoding='utf8').read(),
long_description_content_type='text/markdown',
url='https://github.com/RimoChan/librian',
packages=[
'librian',
'librian.librian_util',
'librian.librian本體',
'librian.librian本體.librian虛擬機',
],
package_data={
'librian.librian本體': [
'前端/*', '前端/dist/*', '前端/默認標題畫面/*', '前端/黑科技/**/*', '前端/黑科技/**/**/*',
'資源/*',
'配置.yaml',
],
},
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
install_requires=[
'liber>=1.0.1',
'rimo_utils>=1.4.1',
'cefpython3>=66.0',
'wxPython>=4.0.4',
'cloudpickle>=1.2.2',
'opencc>=1.1.1',
'PyYAML>=5.2',
'fire>=0.2.1',
'requests>=2.24.0',
'libsass>=0.20.0',
'AppKit>=0.2.8 ; sys_platform == "darwin"',
],
python_requires='>=3.6, <=3.7',
)