-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (45 loc) · 1.54 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from pathlib import Path
from setuptools import find_packages, setup
readme_file = Path(__file__).parent / "README.md"
with readme_file.open() as f:
long_description = f.read()
setup(
name="resonant-cli-oauth-client",
description="A Python library for performing OAuth login to a Resonant server.",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache 2.0",
url="https://github.com/kitware-resonant/resonant-cli-oauth-client",
project_urls={
"Bug Reports": "https://github.com/kitware-resonant/resonant-cli-oauth-client/issues",
"Source": "https://github.com/kitware-resonant/resonant-cli-oauth-client",
},
author="Kitware, Inc.",
author_email="[email protected]",
keywords="",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python",
],
python_requires=">=3.8",
install_requires=[
"authlib",
"dataclasses-json",
"pyxdg",
],
extras_require={
"dev": ["ipython", "tox"],
"example": [
"click",
"requests",
"django",
"django-oauth-toolkit @ git+https://github.com/duzumaki/django-oauth-toolkit@add-device-flow",
],
},
packages=find_packages(),
)