-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
51 lines (47 loc) · 1.33 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
44
45
46
47
48
49
50
51
[tool.poetry]
name = "nannernest"
version = "0.1.4"
description = "Optimal peanut butter and banana sandwiches"
authors = ["Ethan Rosenthal <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/EthanRosenthal/nannernest"
repository = "https://github.com/EthanRosenthal/nannernest"
keywords = ["deep learning", "machine learning", "peanut butter", "banana", "sandwich"]
license = "GNU Affero General Public License v3"
include = [
"LICENSE"
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
[tool.poetry.scripts]
nannernest = 'nannernest.cli:app'
[tool.poetry.dependencies]
python = "^3.7"
typer = "^0.3.1"
sympy = "^1.6.1"
seaborn = "^0.10.1"
numpy = "^1.19.1"
matplotlib = "^3.3.0"
svgpath2mpl = "^0.2.1"
Pillow = "^7.2.0"
torch = "^1.6.0"
torchvision = "^0.7.0"
scipy = "^1.5.2"
scikit-image = "^0.17.2"
nest2D = "0.4.3"
colorama = "^0.4.3"
click-spinner = "^0.1.10"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
pytest = "^6.0.1"
ipykernel = "^5.3.4"
pytest-cov = "^2.10.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"