-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
115 lines (100 loc) · 2.83 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[metadata]
name = mud_examples
description = Maximal Updated Density Examples
author = Mathematical Michael
author-email = [email protected]
license = mit
long-description = file: README.md
long-description-content-type = text/markdown; charset=UTF-8; variant=GFM
url = https://github.com/mathematicalmichael/mud-examples.git
project-urls =
Documentation = https://github.com/mathematicalmichael/mud-examples.git
# Change if running only on Windows, Mac or Linux (comma-separated)
platforms = any
# Add here all kinds of additional classifiers as defined under
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
[options]
zip_safe = False
packages = find_namespace:
include_package_data = True
package_dir =
=src
# package_data = {'': ['data/pde_2D/*.pkl']}
# DON'T CHANGE THE FOLLOWING LINE! IT WILL BE UPDATED BY PYSCAFFOLD!
setup_requires = setuptools_scm[toml]>=5
# Add here dependencies of your project (semicolon/line-separated), e.g.
install_requires =
importlib-metadata; python_version<"3.10"
mud>=0.0.24,!=0.1.0
numpy
scipy
matplotlib
# Require a specific Python version, e.g. Python 2.7 or >= 3.4
python_requires = >=3.5
[options.packages.find]
where = src
exclude =
tests
[options.extras_require]
# Add here additional requirements for extra features, to install with:
# `pip install mud_examples[dev]`
# Add here test requirements (semicolon/line-separated)
dev =
pytest
pytest-cov
coverage
coveralls
flake8
black
pre-commit
pub =
setuptools
setuptools_scm
wheel
twine
[options.entry_points]
console_scripts =
mud_examples = mud_examples.runner:run
generate_poisson_data = mud_examples.poisson:run
mud_run_lin_meas = mud_examples.linear.lin:run_meas
mud_run_lin_meas_var = mud_examples.linear.lin:run_meas_var
mud_run_inv = mud_examples.runner:run_monomial
mud_run_lin = mud_examples.runner:run_linear
mud_run_pde = mud_examples.runner:run_pde
mud_run_ode = mud_examples.runner:run_ode
mud_run_all = mud_examples.runner:run_all
[tool:pytest]
# Options for py.test:
addopts =
--cov mud_examples
--cov-report term-missing
--verbose
--doctest-modules src/mud_examples
norecursedirs =
dist
build
.tox
testpaths = tests
[aliases]
dists = bdist_wheel
[bdist_wheel]
# Use this option if your package is pure-python
universal = 0
[build_sphinx]
source_dir = docs
build_dir = build/sphinx
[devpi:upload]
# Options for the devpi: PyPI server and packaging tool
# VCS export must be deactivated since we are using setuptools-scm
no-vcs = 1
formats = bdist_wheel
[pyscaffold]
# PyScaffold's parameters when the project was created.
# This will be used when updating. Do not change!
version = 4.0.1
package = mud_examples
extensions =
markdown