Skip to content

Commit 816540f

Browse files
committed
upgrade version 1.6.0
1 parent bfd7658 commit 816540f

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

setup.py

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
#!/usr/bin/env python3
22

3-
import setuptools
43
import os
5-
import sys
64
import subprocess
5+
import sys
6+
7+
import setuptools
78

8-
version = "1.5.0"
9+
version = "1.6.0"
910

10-
if sys.argv[-1] == 'publish':
11+
if sys.argv[-1] == "publish":
1112
if os.system("pip freeze | grep twine"):
1213
print("twine not installed.\nUse `pip install twine`.\nExiting.")
1314
sys.exit()
14-
os.system('rm -rf dist nested_multipart_parser.egg-info')
15+
os.system("rm -rf dist nested_multipart_parser.egg-info")
1516
os.system("python setup.py sdist")
1617
if os.system("twine check dist/*"):
1718
print("twine check failed. Packages might be outdated.")
@@ -21,7 +22,7 @@
2122
sys.exit()
2223

2324

24-
with open("README.md", "r", encoding="utf-8") as fh:
25+
with open("README.md", encoding="utf-8") as fh:
2526
long_description = fh.read()
2627

2728
setuptools.setup(
@@ -35,7 +36,7 @@
3536
long_description_content_type="text/markdown",
3637
url="https://github.com/remigermain/nested-multipart-parser",
3738
project_urls={
38-
"Bug Tracker": "https://github.com/remigermain/nested-multipart-parser/issues",
39+
"Bug Tracker": "https://github.com/remigermain/nested-multipart-parser/issues"
3940
},
4041
classifiers=[
4142
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)