-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
61 lines (55 loc) · 1.26 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
[metadata]
name = mems
description = Multimeasurement Energy Models
long_description = file: README.md
author = Rupesh Kumar Srivastava
author_email = rupesh@nnaisense.com
keywords = python
license = MIT Licence
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Utilities
Topic :: Scientific/Engineering :: Artificial Intelligence
[options]
zip_safe = False
include_package_data = True
python_requires = >= 3.7
package_dir =
=src
packages = find:
tests_require =
install_requires =
flatten-dict==0.3.0
imageio
lightning-bolts==0.3.4
omegaconf==2.0.6
pytorch-lightning==1.4.6
psutil
requests
sacred==0.8.2
[options.package_data]
* = *.txt, *.md, *.rst
[options.packages.find]
where = src
[options.extras_require]
# Development dependencies
dev =
black
flake8
isort
pre-commit
[mypy]
files=src/**/*.py, run/*.py, test/*.py
ignore_missing_imports=true
[flake8]
max-line-length = 120
max-complexity = 18
select = B,C,E,F,W,T4,B9
ignore = E203, E266, E501, W503, F403, F401