-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (47 loc) · 1.2 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
52
53
54
55
56
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "crossmodal"
version = "0.0.0"
authors = []
description = "cross modal autoencoder"
readme = "README.md"
packages = [
{ include = "crossmodal" },
]
include = [
"LICENSE",
"**/*.yaml",
"**/*.json",
".serotiny"
]
exclude = [
"**/*.pyc",
"**/__pycache__"
]
classifiers = [
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
python = "^3.8"
poethepoet = "^0.10.0"
#serotiny = {version = "^0.0.0", allow-prereleases = true}
[tool.poe.tasks]
force-cuda101 = "python -m pip install --force-reinstall 'torch>=1.8.1+cu101' -f https://download.pytorch.org/whl/cu101/torch_stable.html"
force-cuda116 = "python -m pip install --force-reinstall --pre 'torch>=1.8.0+cu116' --extra-index-url https://download.pytorch.org/whl/nightly/cu116"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
[tool.poetry.extras]
[tool.flake8]
ignore = [
"E203",
"E402",
"W291",
"W503"
]
max-line-length = 88