forked from shinybrar/DM_phase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
29 lines (26 loc) · 826 Bytes
/
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
[tool.poetry]
name = "DM_phase"
version = "0.1.1"
description = "Find the best Dispersion Measure by using FFT phase angle."
authors = ["Andrew Seymour and Daniele Michilli"]
license = "GNU GENERAL PUBLIC LICENSE Version 3"
readme = "README.md"
repository = "https://github.com/danielemichilli/DM_phase"
classifiers=[
"Operating System :: Unix",
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7'
]
packages = [{include = "DM_phase"}]
[tool.poetry.dependencies]
python = "^3.8"
numpy = ">=1.13"
matplotlib = ">=2.1"
scipy = ">=0.19"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
mypy = "^0.991"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"