Skip to content

Commit deba26c

Browse files
authored
Merge pull request #68 from jkonecny12/master-add-pypi-support
Add pypi-upload to Makefile
2 parents 4c721f1 + 5c12545 commit deba26c

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,5 +139,9 @@ bumpver: po-push
139139
sed -i "s/Version: $(VERSION)/Version: $$NEWVERSION/" $(SPECNAME).spec ; \
140140
sed -i "s/version='$(VERSION)'/version='$$NEWVERSION'/" setup.py
141141

142+
.PHONY: pypi-upload
143+
pypi-upload:
144+
$(PYTHON) -m twine upload dist/*
145+
142146
.PHONY: ci
143147
ci: check test

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434
url='https://github.com/rhinstaller/python-simpleline',
3535
packages=find_packages(include=['simpleline', 'simpleline.*']),
3636
classifiers=[
37-
"Development Status :: 5 - Production/Stable",
38-
"Intended Audience :: Developers",
39-
"License :: OSI Approved :: GNU Lesser General"
40-
"Public License v3 or later (LGPLv3+)",
41-
"Programming Language :: Python :: 3",
37+
"Development Status :: 5 - Production/Stable",
38+
"Intended Audience :: Developers",
39+
"Topic :: Software Development :: User Interfaces",
40+
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
41+
"Programming Language :: Python :: 3",
4242
],
4343
python_requires='>=3.4')

0 commit comments

Comments
 (0)