File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 9
9
import sys
10
10
from shutil import rmtree
11
11
12
- from setuptools import find_packages , setup , Command
12
+ from setuptools import setup , Command
13
13
14
14
# Package meta-data.
15
15
NAME = 'eac_logchecker'
18
18
19
19
AUTHOR = 'OPS'
20
20
REQUIRES_PYTHON = '>=3.5.0'
21
- VERSION = '0.7.1 '
21
+ VERSION = '0.8.0 '
22
22
23
23
here = os .path .abspath (os .path .dirname (__file__ ))
24
24
@@ -56,7 +56,9 @@ def run(self):
56
56
pass
57
57
58
58
self .status ('Building Source and Wheel (universal) distribution…' )
59
- os .system ('{0} setup.py sdist bdist_wheel --universal' .format (sys .executable ))
59
+ os .system (
60
+ '{0} setup.py sdist bdist_wheel --universal' .format (sys .executable )
61
+ )
60
62
61
63
self .status ('Uploading the package to PyPI via Twine…' )
62
64
os .system ('twine upload dist/*' )
You can’t perform that action at this time.
0 commit comments