-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1 KB
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 1 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
[project]
authors = [
{name = "Federico Jaramillo Martínez", email = "federicojaramillom@gmail.com"},
]
requires-python = ">=3.7,<4.0"
dependencies = [
"jinja2",
"faker",
"colorama",
]
name = "dotenver"
version = "1.3.0"
description = "Automatically generate .env files from .env.example template files"
readme = "README.rst"
keywords = [
"dotenv",
"template",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
]
license = {text = "BSD-3-Clause"}
[project.urls]
repository = "https://github.com/jmfederico/dotenver"
[project.scripts]
dotenver = "dotenver.cli:cli"
[tool.pdm.dev-dependencies]
dev = [
"pytest",
"docutils",
"pygments",
"toml",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.scripts]
_tox_requirements = "pdm export --pyproject -d -f requirements -o .tox.requirements.txt"
_tox = "tox"
tox = {composite = ["_tox_requirements", "_tox"]}