Skip to content

Commit f088003

Browse files
minor changes
1 parent bac3984 commit f088003

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
- name: 🚀 Publish to PyPi
2727
env:
2828
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
29-
TWINE_PASSWORD: ${{ secrets.PASSWORD }}
29+
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
3030
run: |
3131
python setup.py sdist bdist_wheel
32-
twine upload -r testpypi dist/*
32+
twine upload -r testpypi dist/* -u $TWINE_USERNAME -p $TWINE_PASSWORD
3333
twine check dist/*
34-
twine upload dist/*
34+
twine upload dist/* -u $TWINE_USERNAME -p $TWINE_PASSWORD

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
long_description = fh.read()
66

77
setuptools.setup(
8-
name="template-python", # Replace with your own username
8+
name="template-python-zuppif",
99
version="0.0.1",
10-
author="Roboflow",
11-
author_email="jacob@roboflow.com",
10+
author="zuppif",
11+
author_email="francesco.zuppichini@gmail.com",
1212
description="<INSERT_DESCRIPTION>",
1313
long_description=long_description,
1414
long_description_content_type="text/markdown",
15-
url="<INSERT_URL>",
15+
url="https://www.youtube.com/watch?v=dQw4w9WgXcQ",
1616
install_requires=[
1717
# list your requires
1818
],

0 commit comments

Comments
 (0)