forked from hvac/hvac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.33 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
#!/usr/bin/env python
from setuptools import setup, find_packages
def load_long_description():
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
return long_description
setup(
name="hvac",
version="1.0.0",
description="HashiCorp Vault API client",
long_description=load_long_description(),
long_description_content_type="text/markdown",
author="Ian Unruh <[email protected]>, Jeffrey Hogan <[email protected]>",
author_email="[email protected]",
url="https://github.com/hvac/hvac",
keywords=["hashicorp", "vault"],
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
],
packages=find_packages(exclude=["docs*", "tests*"]),
python_requires=">=3.6",
install_requires=[
"requests>=2.21.0",
],
include_package_data=True,
package_data={"hvac": ["version"]},
extras_require={"parser": ["pyhcl>=0.3.10"]},
)