Skip to content

Commit

Permalink
fix URL, release on pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
dansan committed Nov 23, 2019
1 parent 3639878 commit f86e2fd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,12 @@ docs-open: docs ## open generated Sphinx HTML doc in browser
servedocs: docs ## compile the docs watching for changes
watchmedo shell-command -p '*.rst' -c '$(MAKE) -C docs html' -R -D .

release: dist ## package and upload a release
release: dist ## package and upload a release to pypi
twine upload dist/*

release-test: dist ## package and upload a release to the pypi test site
twine upload --repository-url https://test.pypi.org/legacy/ dist/*

dist: clean ## builds source and wheel package
python setup.py sdist
python setup.py bdist_wheel
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
tests_require=test_requirements,
python_requires=">=3.6",
scripts=["update_openapi_client"],
url="https://github.com/univention/python-udm-rest-client",
url="https://github.com/univention/python-udm-rest-api-client",
version="0.1.0",
zip_safe=False,
)

0 comments on commit f86e2fd

Please sign in to comment.