-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (48 loc) · 1006 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "galaxy-zoo"
version = "0.1.0"
description = "This project aims to classify the morphologies of distant galaxies using deep neural networks."
authors = ["Simon Alibert <[email protected]>"]
repository = "https://github.com/aliberts/galaxy-zoo"
readme = "README.md"
packages = [{include = "gzoo"}]
[tool.poetry.dependencies]
python = "^3.10"
pyyaml = "^6.0"
torch = "^1.13.0"
torchvision = "^0.14.0"
wandb = "^0.13.6"
pandas = "^1.5.2"
scikit-learn = "^1.2.0"
matplotlib = "^3.6.2"
kaggle = "^1.5.12"
pyrallis = "^0.3.1"
fastai = "^2.7.10"
termgraph = "^0.5.3"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.20.0"
[tool.black]
line-length = 100
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| tests
)/
'''
[tool.isort]
line_length = 100
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"