forked from sayanarijit/expandvars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (39 loc) · 1.18 KB
/
pyproject.toml
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
[tool]
[tool.poetry]
name = "expandvars"
version = "0.7.0" # Also update expandvars.py
description = "Expand system variables Unix style"
license = "MIT"
keywords = ["expand", "system", "variables"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Utilities",
"Topic :: Software Development",
"Operating System :: MacOS",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft"
]
homepage = "https://github.com/sayanarijit/expandvars"
authors = ["Arijit Basu <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.4"
[tool.poetry.dev-dependencies]
tox = "*"
pytest = "*"
pytest-cov = "*"
[tool.poetry.extras]
testing = ["pytest", "pytest-cov"]
[tool.pytest]
addopts = "--cov --cov-report=html --cov-fail-under=100"