-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (54 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
59 lines (54 loc) · 1.58 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "envstack"
version = "1.0.1"
description = "Environment variable composition layer for tools and processes."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.6"
license = { text = "BSD 3-Clause License" }
authors = [{ name = "Ryan Galloway", email = "ryan@rsgalloway.com" }]
dependencies = [
"PyYAML>=5.1.2",
"cryptography>=43.0.1",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"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 :: 3.11",
]
keywords = [
"environment",
"env",
"dotenv",
"configuration",
"config",
"environment-variables",
"cli",
"deployment",
"devops",
"pipeline",
"vfx",
"tooling",
]
[project.urls]
Homepage = "https://github.com/rsgalloway/envstack"
Repository = "https://github.com/rsgalloway/envstack"
Issues = "https://github.com/rsgalloway/envstack/issues"
Changelog = "https://github.com/rsgalloway/envstack/blob/master/CHANGELOG.md"
Documentation = "https://github.com/rsgalloway/envstack/tree/master/docs"
[project.scripts]
envstack = "envstack.cli:main"
whichenv = "envstack.cli:whichenv"
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
where = ["lib"]