Skip to content

Commit 7d47657

Browse files
committed
删除setup.py中的scripts参数
1 parent 424bc77 commit 7d47657

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

litefs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env python
12
#-*- coding: utf-8 -*-
23

34
'''使用 Python 从零开始构建一个 Web 服务器框架。 开发 Litefs 的是为了实现一个能快速、安\
@@ -11,7 +12,7 @@
1112
License: MIT (see LICENSE for details)
1213
'''
1314

14-
__version__ = '0.2.1'
15+
__version__ = '0.2.2'
1516
__author__ = 'Leafcoder'
1617
__license__ = 'MIT'
1718

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
License: MIT (see LICENSE for details)
2323
'''
2424

25-
__version__ = '0.2.1'
25+
__version__ = '0.2.2'
2626
__author__ = 'Leafcoder'
2727
__license__ = 'MIT'
2828

@@ -36,7 +36,6 @@
3636
url='https://github.com/leafcoder/litefs',
3737
py_modules=['litefs'],
3838
ext_modules=cythonize('litefs.py'),
39-
scripts=['litefs.py'],
4039
license=__license__,
4140
platforms='any',
4241
install_requires=[

0 commit comments

Comments
 (0)