Skip to content

Commit 5b0c762

Browse files
committed
initial pyproject.toml file
1 parent b122d31 commit 5b0c762

1 file changed

Lines changed: 41 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
[build-system]
2+
requires = ["setuptools>=61.0", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "envstack"
7+
version = "0.9.6"
8+
description = "Environment variable composition. Envstack is a configuration layer for tools and processes."
9+
readme = { file = "README.md", content-type = "text/markdown" }
10+
requires-python = ">=3.6"
11+
license = { text = "BSD 3-Clause License" }
12+
authors = [{ name = "Ryan Galloway", email = "ryan@rsgalloway.com" }]
13+
dependencies = [
14+
"PyYAML>=5.1.2",
15+
"cryptography>=43.0.1",
16+
]
17+
classifiers = [
18+
"Development Status :: 4 - Beta",
19+
"Intended Audience :: Developers",
20+
"Topic :: Software Development :: Libraries",
21+
"Programming Language :: Python :: 3",
22+
"Programming Language :: Python :: 3.6",
23+
"Programming Language :: Python :: 3.7",
24+
"Programming Language :: Python :: 3.8",
25+
"Programming Language :: Python :: 3.9",
26+
"Programming Language :: Python :: 3.10",
27+
"Programming Language :: Python :: 3.11",
28+
]
29+
30+
[project.urls]
31+
Homepage = "http://github.com/rsgalloway/envstack"
32+
33+
[project.scripts]
34+
envstack = "envstack.cli:main"
35+
whichenv = "envstack.cli:whichenv"
36+
37+
[tool.setuptools]
38+
zip-safe = false
39+
40+
[tool.setuptools.packages.find]
41+
where = ["lib"]

0 commit comments

Comments
 (0)