-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 893 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (31 loc) · 893 Bytes
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
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="envfrom",
description="Call child process with custom environment",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.2.1",
author="rm_ass",
author_email="contact@romanmasse.com",
packages=find_packages(),
url='http://github.com/rambobinator/envfrom',
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python"
],
entry_points={
"console_scripts": [
"envfrom = envfrom.envfrom:run"
]
},
install_requires=[
"kubernetes>=10.0.1",
"requests>=2.23.0",
"nested-lookup>=0.2.21",
"hvac[parser]>=0.10.5"
],
license="MIT"
)