-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
75 lines (68 loc) · 1.73 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[metadata]
name = nucml
description = ML-oriented tools for navigating the nuclear data evaluation pipeline.
long_description = file: README.md
author = Pedro Junior Vicente Valdez
author_email = [email protected]
url = https://github.com/pedrojrv/nucml
classifiers =
Programming Language :: Python :: 3,
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+),
Operating System :: OS Independent,
Development Status :: 3 - Alpha
keywords = [nuclear, ml, nucml, nuclear ml, nuclear data, cross section]
project_urls =
Documentation = https://pedrojrv.github.io/nucml
license = GNU General Public License v3 or later (GPLv3+)
version = 2.0.0.b0
[options]
python_requires = >= 3.8, < 3.10
include_package_data = True
packages = find:
install_requires =
natsort
pandas
plotly
matplotlib
scikit-learn
seaborn
imageio
wandb
google-cloud-bigquery
[options.entry_points]
console_scripts =
nucml-configure = nucml.configure:main
[options.packages.find]
include = nucml*
[options.extras_require]
tests =
pip-tools >= 6
# Please run `pre-commit install-hooks` to install all packages for pre-commit
pre-commit >= 2.14.0
pytest >= 6
pytest-cov
pytest-html
pytest-timeout
pyright
flake8
dev =
# Add a list of packages required for development environment (Optional)
typing-extensions
pre-commit
docs =
sphinx >= 4
sphinx-rtd-theme
[flake8]
max_line_length = 120
ignore = E402, E226, W503, W605, D104
exclude =
venv
.eggs
build
# pydocstyle configuration for flake8-docstrings
docstring-convention = google
docstring-match-dir = src
per-file-ignores =
tests/*: D100, D205, D212, D415
[pycodestyle]
max-line-length = 120