19 lines
606 B
Python
19 lines
606 B
Python
|
import pathlib
|
||
|
|
||
|
from setuptools import find_packages, setup
|
||
|
|
||
|
here = pathlib.Path(__file__).parent.resolve()
|
||
|
long_description = (here / "README.md").read_text(encoding="utf-8")
|
||
|
|
||
|
setup(
|
||
|
name="ory-hydra-client",
|
||
|
version="1.9.2",
|
||
|
description="A client library for accessing ORY Hydra",
|
||
|
long_description=long_description,
|
||
|
long_description_content_type="text/markdown",
|
||
|
packages=find_packages(),
|
||
|
python_requires=">=3.7, <4",
|
||
|
install_requires=["httpx >= 0.15.0, < 0.23.0", "attrs >= 21.3.0", "python-dateutil >= 2.8.0, < 3"],
|
||
|
package_data={"ory_hydra_client": ["py.typed"]},
|
||
|
)
|