forked from rfrazier716/PyRayT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 719 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 719 Bytes
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
[tool.poetry]
name = "pyrayt"
version = "0.3.1"
description = "a toolchain for developing and simulating optical packages"
authors = ["Frazier, Ryan"]
license = "MIT"
packages = [
{include = "pyrayt"},
{include = "tinygfx"}
]
[tool.poetry.dependencies]
python = ">=3.7.0 <3.10"
numpy = "^1.20.0"
scipy = "^1.6.0"
pandas = "^1.2.2"
matplotlib = "^3.3.4"
[tool.poetry.dev-dependencies]
coverage = "^5.4.0"
tox = "^3.21.4"
Sphinx = "^3.4.3"
sphinx-rtd-theme = "^0.5.1"
sphinx-autodoc-typehints = "^1.11.1"
sphinx-prompt = "^1.4.0"
black = "^21.7b0"
pylint = "^2.9.3"
sphinx-autobuild = "^2021.3.14"
ipykernel = "^6.0.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"