Skip to content

Commit

Permalink
0.0.1 intelowl click-creds
Browse files Browse the repository at this point in the history
  • Loading branch information
mlodic committed Nov 5, 2022
1 parent 9dd18fc commit d506f1e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
2 changes: 2 additions & 0 deletions click_creds/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"login": "login",
"password": "password",
"account": "account",
"http_proxy": "http_proxy",
"https_proxy": "https_proxy"
}

MODULE_KEY = "click_creds.classes.ClickCreds"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@

VERSION = (HERE / "version.txt").read_text()

GITHUB_URL = "https://github.com/eshaan7/click-creds"
GITHUB_URL = "https://github.com/intelowlproject/click-creds"

requirements = (HERE / "requirements.txt").read_text().split("\n")

requirements_test = (HERE / "requirements.dev.txt").read_text().split("\n")

# This call to setup() does all the work
setup(
name="click-creds",
name="intelowl-click-creds",
version=VERSION,
url=GITHUB_URL,
license="BSD",
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.3
0.0.1

0 comments on commit d506f1e

Please sign in to comment.