-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (33 loc) · 1.16 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
[build-system]
requires = ["setuptools>=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "dotenvdrift"
version = "0.1.3"
description = "Repo-local CLI for env drift across code, .env.example, Docker, and GitHub Actions."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
keywords = ["dotenv", "env", "env-drift", "config-drift", "cli", "github-actions", "docker", "repo-local"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Build Tools",
]
[project.scripts]
dotenvdrift = "dotenvdrift.cli:main"
[project.urls]
Homepage = "https://github.com/KevinHansen90/dotenvdrift"
Repository = "https://github.com/KevinHansen90/dotenvdrift"
Issues = "https://github.com/KevinHansen90/dotenvdrift/issues"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]