-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
50 lines (45 loc) · 1.27 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
44
45
46
47
48
49
50
[project]
dynamic = ["version"]
name = 'expandvars'
description = 'Expand system variables Unix style'
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',
'Topic :: Utilities',
'Topic :: Software Development',
'Operating System :: MacOS',
'Operating System :: Unix',
'Operating System :: POSIX',
'Operating System :: Microsoft',
]
homepage = 'https://github.com/sayanarijit/expandvars'
authors = [
{name = "Arijit Basu", email = "[email protected]"}
]
maintainers = [
{name = "Arijit Basu", email = "[email protected]"}
]
readme = 'README.md'
license = {file = "LICENSE"}
requires-python = ">=3"
[project.urls]
"Homepage" = "https://github.com/sayanarijit/expandvars"
[project.optional-dependencies]
tests = ['tox', 'pytest', 'pytest-cov', 'black']
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "expandvars.py"
[tool.pytest]
addopts = '--cov --cov-report=html --cov-fail-under=100'