-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 822 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (26 loc) · 822 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
[project]
name = "envertor"
version = "0.1.5"
description = "Generate example .env files from existing .env files with placeholder detection."
authors = [
{ name = "Samin Yeasar", email = "syeasar.kuet@gmail.com" }
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
dependencies = []
keywords = ["dotenv", "env", "environment", "cli", "devtools"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Topic :: Software Development :: Build Tools",
]
[project.urls]
Homepage = "https://github.com/Y3454R/envertor"
Repository = "https://github.com/Y3454R/envertor"
[project.scripts]
envertor = "envertor.cli:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"