File: pyproject.toml

package info (click to toggle)
python-expandvars 1.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 376 kB
  • sloc: python: 660; makefile: 4
file content (42 lines) | stat: -rw-r--r-- 1,280 bytes parent folder | download
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
[project]
dynamic = ["version"]
name = 'expandvars'
description = 'Expand system variables Unix style'
keywords = ['expand', 'system', 'variables']
classifiers = [
  'Development Status :: 5 - Production/Stable',
  '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 = "sayanarijit@gmail.com" }]
maintainers = [{ name = "Arijit Basu", email = "sayanarijit@gmail.com" }]
readme = 'README.md'
license = { file = "LICENSE" }
requires-python = ">=3.6.2"

[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"]