-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.cfg
More file actions
77 lines (66 loc) · 1.63 KB
/
setup.cfg
File metadata and controls
77 lines (66 loc) · 1.63 KB
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
[metadata]
name = MATS
author = Erin M. Adkins
author_email = erin.adkins@nist.gov
license= NIST license
license_files = LICENSE
description = A NIST based multi-spectrum fitting tool for spectroscopic data
# if using markdown
long_description_content_type = text/markdown
long_description = file: README.md, LICENSE
keywords = MATS
url = https://github.com/usnistgov/MATS
classifiers =
Development Status :: 2 - Pre-Alpha
License :: Public Domain
Operating System :: OS Independent
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Scientific/Engineering
[options]
packages = find:
zip_safe = True # if using mypy, must be False
include_package_data = True
python_requires = >=3.6
install_requires =
setuptools >= 38.4
# additional packages
numpy
pandas
lmfit
matplotlib
seaborn
scipy
qgrid
mpmath
# jupyter
jupyter
setup_requires =
setuptools >= 38.4
setuptools_scm
[aliases]
test = pytest
[tool:pytest]
addopts = --verbose
testpaths = tests
[isort]
profile = black
skip_gitignore = true
force_to_top = true
default_section = THIRDPARTY
known_first_party = MATS
[flake8]
ignore =
E203 # whitespace before ':' - doesn't work well with black
E402 # module level import not at top of file
E501 # line too long - let black worry about that
E731 # do not assign a lambda expression, use a def
W503 # line break before binary operator
exclude=
.eggs
doc
docs