-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
48 lines (42 loc) · 858 Bytes
/
setup.cfg
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
[metadata]
name = nn-template-core
description = Utility library for nn-template.
long_description = file: README.md
author = Valentino Maiorca
author_email = [email protected]
keywords = python, torch
license = MIT License
url = https://github.com/grok-ai/nn-template-core
[options]
zip_safe = False
include_package_data = True
package_dir=
=src
packages=find:
install_requires =
# Add project specific dependencies
# Stuff easy to break with updates
lightning==2.0.*
hydra-core
wandb
# Stable stuff usually backward compatible
python-dotenv
stqdm
rich
[options.packages.find]
where=src
[options.package_data]
* = *.txt, *.md
[options.extras_require]
# Test dependencies
test =
pytest
pytest-cov
# Development dependencies
dev =
black
flake8
isort
pre-commit
bandit
%(test)s