forked from FusionAuth/fusionauth-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 863 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="fusionauth-client",
version="1.7.1",
author="Tyler Scott",
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=[
'requests',
]
)