1
0
mirror of https://github.com/CZ-NIC/pz.git synced 2022-02-13 01:03:07 +03:00

stable version release

This commit is contained in:
Edvard Rejthar
2021-03-19 17:51:59 +01:00
parent 27ae2cb2fb
commit 517c2ddcdb
2 changed files with 10 additions and 4 deletions

View File

@@ -24,8 +24,8 @@ jobs:
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PYED }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_GITHUB_PZ }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*

View File

@@ -8,7 +8,7 @@ long_description = p.read_text() if p.exists() else None
setup(
name='pz',
version='1.0.0-rc.1',
version='1.0.0',
author='Edvard Rejthar',
author_email='edvard.rejthar@nic.cz',
url='https://github.com/CZ-NIC/pz',
@@ -19,7 +19,13 @@ setup(
long_description_content_type="text/markdown",
scripts=['pz'],
classifiers=[
'Programming Language :: Python :: 3'
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Topic :: Text Processing',
'Topic :: Utilities'
],
python_requires='>=3.6',
)