File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 33# Deploy to PyPI for both source and wheel
44#
55rm -Rf build/ dist/ wiremock.egg-info/ || true
6- python setup.py sdist upload -r local || true
7- export WHEEL_TOOL= ` which wheel ` && python setup.py bdist_wheel --universal upload -r local || true
6+ python3 setup.py sdist bdist_wheel
7+ python3 -m twine upload dist/ *
88rm -Rf build/ dist/ wiremock.egg-info/ || true
Original file line number Diff line number Diff line change @@ -11,5 +11,6 @@ Sphinx==2.4.3
1111sphinx-rtd-theme==0.4.3
1212toml==0.10.0
1313tox==3.14.5
14+ twine==3.1.1
1415virtualenv==20.0.5
1516watchdog==0.10.2
Original file line number Diff line number Diff line change 4444 "License :: OSI Approved :: Apache Software License" ,
4545 "Operating System :: OS Independent" ,
4646 "Natural Language :: English" ,
47- "Programming Language :: Python :: 2.7" ,
48- "Programming Language :: Python :: 3.4" ,
47+ "Programming Language :: Python :: 3" ,
4948 "Programming Language :: Python :: Implementation" ,
5049 "Topic :: Internet :: WWW/HTTP" ,
5150 "Topic :: Software Development :: Libraries :: Python Modules" ,
6968 license = 'Apache Software License 2.0' ,
7069 packages = find_packages (),
7170 include_package_data = True ,
71+ python_requires = '>=3.4' ,
7272)
You can’t perform that action at this time.
0 commit comments