We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4760b8 commit 0d31170Copy full SHA for 0d31170
setup.py
@@ -9,7 +9,7 @@
9
import sys
10
from shutil import rmtree
11
12
-from setuptools import find_packages, setup, Command
+from setuptools import setup, Command
13
14
# Package meta-data.
15
NAME = 'eac_logchecker'
@@ -18,7 +18,7 @@
18
EMAIL = '[email protected]'
19
AUTHOR = 'OPS'
20
REQUIRES_PYTHON = '>=3.5.0'
21
-VERSION = '0.7.1'
+VERSION = '0.8.0'
22
23
here = os.path.abspath(os.path.dirname(__file__))
24
@@ -56,7 +56,9 @@ def run(self):
56
pass
57
58
self.status('Building Source and Wheel (universal) distribution…')
59
- os.system('{0} setup.py sdist bdist_wheel --universal'.format(sys.executable))
+ os.system(
60
+ '{0} setup.py sdist bdist_wheel --universal'.format(sys.executable)
61
+ )
62
63
self.status('Uploading the package to PyPI via Twine…')
64
os.system('twine upload dist/*')
0 commit comments