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:
4
.github/workflows/python-publish.yml
vendored
4
.github/workflows/python-publish.yml
vendored
@@ -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/*
|
||||
|
||||
10
setup.py
10
setup.py
@@ -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',
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user