forked from Turall/OPA-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.15 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1.15 KB
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
"""
OPA-python-client
Python client integrates with Open Policy Agent (OPA) service
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="OPA-python-client",
version="1.1.0",
author="Tural Muradov",
author_email="tural_m@hotmail.com",
description="Client for connection to the OPA service",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Turall/OPA-python-client.git",
license="MIT",
install_requires=[
"user-agent>=0.1.9",
"requests>=2.5.4.1",
"urllib3==1.25.7",
"certifi>=2019.11.28",
],
packages=setuptools.find_packages(),
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)