Skip to content

Commit d506f1e

Browse files
committed
0.0.1 intelowl click-creds
1 parent 9dd18fc commit d506f1e

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/pythonpublish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
pip install setuptools wheel twine
2020
- name: Build and publish
2121
env:
22-
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
23-
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
22+
TWINE_USERNAME: __token__
23+
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
2424
run: |
2525
python setup.py sdist bdist_wheel
2626
twine upload dist/*

click_creds/defaults.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
"login": "login",
33
"password": "password",
44
"account": "account",
5+
"http_proxy": "http_proxy",
6+
"https_proxy": "https_proxy"
57
}
68

79
MODULE_KEY = "click_creds.classes.ClickCreds"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515

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

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

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

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

2424
# This call to setup() does all the work
2525
setup(
26-
name="click-creds",
26+
name="intelowl-click-creds",
2727
version=VERSION,
2828
url=GITHUB_URL,
2929
license="BSD",

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.3
1+
0.0.1

0 commit comments

Comments
 (0)