Skip to content

Commit 424bc77

Browse files
committed
解决通过Pypi安装时发生错误的问题
1 parent 980207d commit 424bc77

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

requirements.pip

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
argh==0.26.2
2+
greenlet==0.4.13
13
Mako==1.0.6
24
MarkupSafe==1.0
3-
PyYAML==3.12
4-
argh==0.26.2
5-
argparse==1.2.1
65
pathtools==0.1.2
6+
pkg-resources==0.0.0
7+
PyYAML==3.12
78
watchdog==0.8.3
8-
wsgiref==0.1.2

setup.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,15 @@
3939
scripts=['litefs.py'],
4040
license=__license__,
4141
platforms='any',
42-
install_requires=open("requirements.pip").read().splitlines()
42+
install_requires=[
43+
'Mako==1.0.6',
44+
'MarkupSafe==1.0',
45+
'greenlet==0.4.13',
46+
'PyYAML==3.12',
47+
'argh==0.26.2',
48+
'argparse==1.2.1',
49+
'pathtools==0.1.2',
50+
'watchdog==0.8.3',
51+
'wsgiref==0.1.2'
52+
]
4353
)

0 commit comments

Comments
 (0)