-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
28 lines (26 loc) · 884 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="fusionauth-client",
version="1.56.0",
author="FusionAuth",
author_email="[email protected]",
description="A client library for FusionAuth",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/FusionAuth/fusionauth-python-client",
packages=find_packages(where="src/main/python"),
namespace_packages=["fusionauth"],
package_dir={"": "src/main/python"},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
],
install_requires=[
"deprecated",
"requests",
],
)