Skip to content

Commit 517c2dd

Browse files
committed
stable version release
1 parent 27ae2cb commit 517c2dd

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/python-publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
pip install setuptools wheel twine
2525
- name: Build and publish
2626
env:
27-
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
28-
TWINE_PASSWORD: ${{ secrets.PYPI_PYED }}
27+
TWINE_USERNAME: __token__
28+
TWINE_PASSWORD: ${{ secrets.PYPI_GITHUB_PZ }}
2929
run: |
3030
python setup.py sdist bdist_wheel
3131
twine upload dist/*

setup.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name='pz',
11-
version='1.0.0-rc.1',
11+
version='1.0.0',
1212
author='Edvard Rejthar',
1313
author_email='edvard.rejthar@nic.cz',
1414
url='https://github.com/CZ-NIC/pz',
@@ -19,7 +19,13 @@
1919
long_description_content_type="text/markdown",
2020
scripts=['pz'],
2121
classifiers=[
22-
'Programming Language :: Python :: 3'
22+
'Programming Language :: Python :: 3',
23+
'Development Status :: 5 - Production/Stable',
24+
'Environment :: Console',
25+
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
26+
'Operating System :: OS Independent',
27+
'Topic :: Text Processing',
28+
'Topic :: Utilities'
2329
],
2430
python_requires='>=3.6',
2531
)

0 commit comments

Comments
 (0)