-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
49 lines (42 loc) · 1.03 KB
/
Copy pathsetup.cfg
File metadata and controls
49 lines (42 loc) · 1.03 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
48
49
[metadata]
name = CarLogger
description = Track any work you perform on your car, keep a maintenance log, list of parts and write notes.
author = FancySnacks
version = 1.6.0
license = MIT
license_file = LICENSE
readme = README
platforms = unix, linux, osx, cygiwn, win32
classifiers =
Development Status :: 3 - Alpha
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.11
[options]
packages =
carlogger
python_requires = >=3.11
package_dir =
=src
zip_safe = no
[options.entry_points]
console_scripts =
carlogger = carlogger.__main__:main
[build-system]
requires = ["setuptools~=69.1.0", "wheel"]
build-backend = "setuptools.build_meta"
[options.extras_require]
testing =
pytest>=7.3.1
pytest-cov>=4.0.0
[coverage:run]
source = carlogger
omit = tests/*
[coverage:report]
show_missing = True
[tool:pytest]
addopts =
--cov=carlogger
--cov-report=term-missing