-
Notifications
You must be signed in to change notification settings - Fork 77
/
pyproject.toml
44 lines (39 loc) · 1.09 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "AllanTools"
version = "2024.06"
dependencies = [
"numpy",
"scipy>=1.6.0",
"numpydoc",
"matplotlib",
"pytest",
]
requires-python = ">=3.8"
authors = [
{name = "Anders E. E. Wallin", email = "[email protected]"},
]
maintainers = [
{name = "Anders E. E. Wallin", email = "[email protected]"},
]
description = "A python library for calculating Allan deviation and related time & frequency statistics"
readme = "README.rst"
license = {file = "LICENSE.txt"}
keywords = ["time", "frequency", "statistics", "ADEV",]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python"
]
[tool.hatch.build.targets.sdist]
exclude = [
"refs/*",
"experimental/*",
]
[project.optional-dependencies]
[project.urls]
Homepage = "https://github.com/aewallin/allantools"
Documentation = "https://allantools.readthedocs.io/en/latest/index.html"
Repository = "https://github.com/aewallin/allantools"
"Test Coverage" = "https://coveralls.io/github/aewallin/allantools"