-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
71 lines (61 loc) · 1.24 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
[metadata]
name = lsqfitgui
version = file: lsqfitgui/_version.txt
description = Graphical User Interface for Bayesian fits.
author = @ckoerber, @millernb
author_email = [email protected]
url = https://github.com/ckoerber/lsqfit-gui/
long_description = file: README.md
long_description_content_type = text/markdown
platform = any
keywords = Bayesian Inference, Fitting, Dash
[options]
packages = find:
install_requires =
lsqfit
pandas
sympy
plotly
dash
dash-bootstrap-components >= 1.0.0
PyYAML
python_requires = >=3.6
include_package_data = true
setup_requires = setuptools >= 40.9.0
test_suite = pytest
tests_requires =
dash[testing]
pytest
[options.packages.find]
exclude =
doc
example
tests
[options.extras_require]
test =
dash[testing]
pytest
pytest-cov
dev =
numpy
scipy
dash[testing]
pytest
black
sphinx
pydata-sphinx-theme
myst-parser
pytest-cov
[options.package_data]
lsqfitgui = _version.txt, assets/*.js
[options.entry_points]
console_scripts =
lsqfitgui = lsqfitgui.scripts.entrypoint:main
[flake8]
max-line-length = 99
per-file-ignores =
example/*.py: D107, D101, D103
[tool:pytest]
minversion = 6.0
addopts = --headless
testpaths = tests