Skip to content

Commit

Permalink
Fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
danlamanna committed Jan 31, 2022
1 parent eb3e8d6 commit 183a14b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,15 @@

setup(
name='girder-cli-oauth-client',
version='0.1.0',
description='',
description='A Python library for performing OAuth login to a Girder 4 (Django) server.',
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache 2.0',
url='https://github.com/girder/girder-cli-oauth-client',
project_urls={
'Bug Reports': 'https://github.com/girder/girder-cli-oauth-client/issues',
'Source': 'https://github.com/girder/girder-cli-oauth-client',
},
author='Kitware, Inc.',
author_email='[email protected]',
keywords='',
Expand All @@ -30,8 +34,6 @@
'Programming Language :: Python',
],
python_requires='>=3.8',
packages=find_packages(),
include_package_data=True,
install_requires=[
'authlib',
'pyxdg',
Expand All @@ -45,4 +47,5 @@
'requests',
]
},
packages=find_packages(),
)

0 comments on commit 183a14b

Please sign in to comment.