Skip to content

Commit d8c1960

Browse files
author
Valeriy Mukhtarulin
committed
Fix description, remove authors generation
1 parent 5f5816f commit d8c1960

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/python-package.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,15 @@ jobs:
2222
run: |
2323
pytest
2424
- name: Build package
25+
env:
26+
SKIP_GENERATE_AUTHORS: 1
2527
run: |
2628
pip install -U setuptools wheel pbr
2729
python setup.py sdist bdist_wheel
2830
- name: Publish package
2931
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
3032
uses: pypa/gh-action-pypi-publish@release/v1
3133
with:
34+
skip_existing: true
3235
user: __token__
3336
password: pypi-AgEIcHlwaS5vcmcCJDBkZTc5ZmMzLTZjZTYtNDFkYS05NmM0LWIzZWQwZmIxNWZiYgACN3sicGVybWlzc2lvbnMiOiB7InByb2plY3RzIjogWyJ2ZXJ5ZmkiXX0sICJ2ZXJzaW9uIjogMX0AAAYgSOgbpaDU8c2fUHaeW-Uf__LkuCgFRwGrfNbIwQQPEmI
34-

CONTRIBUTORS.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Versioning
22

3-
pbr manages all the package metadata:
4-
* it uses requirements.txt
5-
* it adds version
3+
pbr manages all the package metadata:
4+
* it uses requirements.txt
5+
* it adds version
66

7-
simply run `python setup.py sdist bdist_wheel`
7+
To check the package build, simply run `python setup.py sdist bdist_wheel`

README.md renamed to README

File renamed without changes.

setup.cfg

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
[metadata]
22
name = veryfi
3-
description = Python implementation of the Veryfi OCR APIs
4-
long_description = file: README.md
5-
long_description_content_type = text/markdown
3+
description-file = README
64
author = Veryfi, Inc.
75
author_email = [email protected]
86
url = https://github.com/veryfi/veryfi-python
@@ -24,4 +22,4 @@ packages = find:
2422

2523
[entry_points]
2624
pbr.config.drivers =
27-
plain = pbr.cfg.driver:Plain
25+
plain = pbr.cfg.driver:Plain

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup
22

33
setup(
4-
setup_requires=["pbr"],
4+
setup_requires=["pbr>=1.9", "setuptools>=17.1"],
55
pbr=True,
66
)

0 commit comments

Comments
 (0)