-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (57 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
73 lines (57 loc) · 1.37 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# See: https://github.com/pr3d4t0r/SSScoring/blob/master/LICENSE.txt
[build-system]
requires = [
'devpi',
'numpy',
'pandas',
'pytest',
'pytest-cov',
'setuptools>=61.0',
]
build-backend = 'setuptools.build_meta'
[metadata]
url = 'https://github.com/pr3d4t0r/ssscoring'
[project]
authors = [
{name = 'Eugene Ciurana pr3d4t0r', email = 'ssscoring.project@cime.net' }
]
classifiers = [
'Intended Audience :: Other Audience',
'Operating System :: MacOS',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
]
description = 'ssscoring - Speed Skydiving scoring tools'
dynamic = [
'dependencies',
]
license = 'BSD-3-Clause'
name = 'ssscoring' # $(PACKAGE) and package.txt
readme = 'README.md'
requires-python = '>=3.9.9'
version = '2.10.5'
[project.scripts]
ssscore = 'ssscoring.cli:_ssscoreCommand'
[tool.pytest.ini_options]
addopts = '-sv -p no:warnings -rm --cov="ssscoring" --cov-report=html'
testpaths = [
'tests',
]
pythonpath = [
'.',
]
[tool.setuptools]
include-package-data = true
packages = [
'ssscoring',
'ssscoring.resources'
]
[tool.setuptools.dynamic]
dependencies = { file = 'requirements.txt' }
[tool.setuptools.package-data]
ssscoring = [
'resources/drop-zones-loc-elev.csv',
'resources/instructions.md',
'resources/moved-2-new-domain.md',
]