Skip to content

Commit

Permalink
Fix autorelease
Browse files Browse the repository at this point in the history
  • Loading branch information
danlamanna committed Jan 31, 2022
1 parent 183a14b commit 6138036
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ using the OAuth2.0 Authorization Code Grant with PKCE flow and out-of-band redir
oauth_client = GirderCliOAuthClient(
'http://localhost:8000/oauth/',
'1ohsuyWIx9fEsJhmAH2AWGNUqd8Wsd7LHyongtVy',
'my_oauth_application',
)
```

Expand Down
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
[build-system]
requires = ["setuptools >= 42", "wheel", "setuptools-scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]

[tool.black]
line-length = 100
skip-string-normalization = true
Expand Down
8 changes: 2 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,8 @@
from setuptools import find_packages, setup

readme_file = Path(__file__).parent / 'README.md'
if readme_file.exists():
with readme_file.open() as f:
long_description = f.read()
else:
# When this is first installed in development Docker, README.md is not available
long_description = ''
with readme_file.open() as f:
long_description = f.read()

setup(
name='girder-cli-oauth-client',
Expand Down

0 comments on commit 6138036

Please sign in to comment.