forked from envkey/envkey-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 1 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
from setuptools import setup
setup(name="envkey",
version="1.2.4",
description="EnvKey's Python library. Protect API keys and credentials. Keep configuration in sync.",
url="https://github.com/envkey/envkey-python",
keywords=["security", "secrets management", "configuration management", "environment variables", "configuration", "python"],
author="EnvKey",
author_email="[email protected]",
license="MIT",
packages=["envkey"],
package_data={"envkey": ["ext/?/*"]},
include_package_data=True,
install_requires=["python-dotenv>=0.8.2"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: Security :: Cryptography",
],
zip_safe=False)