File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 11#!/usr/bin/env python3
22
3- import setuptools
43import os
5- import sys
64import 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.\n Use `pip install twine`.\n Exiting." )
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." )
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
2728setuptools .setup (
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" ,
You can’t perform that action at this time.
0 commit comments