-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (41 loc) · 920 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
[metadata]
name = lme
description = Machine Learning for LME Prediction
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/Blackbelt1221/LME-Machine-Learning-Redux
author = Benjamin A. Begley, Cameron Frampton
autho_email = [email protected],
license = MIT
license_file = LICENSE
platforms = win_amd64
classifiers =
Programming Language :: Python :: 3.9
[options]
packages =
lme
install_requires =
pandas >= 1.3
numpy >= 1.22
scikit-learn >= 1.0
matplotlib >= 3.5
tensorflow >= 2.7
seaborn >= 0.11
python_requires =
>=3.9
package_dir =
=src
zip_safe = no
[options.extras_require]
testing =
flake8 >= 4.0
tox >= 3.24
pytest >= 6.2
pytest-cov >= 3.0
mypy >= 0.910
black >= 21
[options.package_data]
lme = py.typed
[flake8]
max-line-length = 88
extend-ignore = E203, E501