-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.41 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "hyperlight"
homepage = "https://github.com/JJGO/hyperlight"
documentation = "https://github.com/JJGO/hyperlight"
version = "0.0.5"
description = "Hyperlight is a Pytorch hypernetwork framework with a streamlined API"
authors = ["Jose Javier Gonzalez Ortiz <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: Apache Software License',
]
keywords = ["hyperlight", "pytorch", "hypernetworks", "deep learning"]
[tool.poetry.dependencies]
python = "^3.7"
torch = ">=1.10,<3"
[tool.poetry.dev-dependencies]
black = "^22.6"
bumpver = "^2021.11.17"
isort = "^5.9.3"
pytest = "^7.0.0"
pyright = "^1.2.0"
pre-commit = "^2.17.0"
[tool.isort]
profile = "black"
[tool.bumpver]
current_version = "0.0.5"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"hyperlight/__init__.py" = ["{version}"]