-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.28 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
[build-system]
requires = [
"setuptools>=42",
"setuptools_scm[toml]>=3.4",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "p1-gpstime"
dynamic = ["version"]
description = "GPS-aware datetime module"
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["COPYING", "COPYING-GPL-3"]
authors = [
{ name = "Jameson Graef Rollins", email = "jameson.rollins@ligo.org" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.6"
dependencies = [
'platformdirs; python_version >= "3.10"',
'appdirs; python_version < "3.10"',
"python-dateutil",
"requests",
]
[project.urls]
Homepage = "https://git.ligo.org/cds/software/gpstime"
Alternate = "https://github.com/PointOneNav/gpstime"
[tool.setuptools]
packages = ["gpstime"]
script-files = ["bin/gpstime"]
[tool.setuptools_scm]
write_to = "gpstime/__version__.py"
[tool.coverage.run]
source = ["gpstime"]
omit = [
"__version__.py",
"test.py",
]
[tool.coverage.report]
# print report with one decimal point
precision = 1
show_missing = true
omit = [
"__version__.py",
"test.py",
]