-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.cfg
More file actions
70 lines (66 loc) · 2.1 KB
/
setup.cfg
File metadata and controls
70 lines (66 loc) · 2.1 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
[metadata]
name = pylook
description = Tools for analysis of experimental rock mechanics data.
long_description = file: README.md
long_description_content_type = text/markdown
author = John Leeman
author_email = support@leemangeophysical.com
maintainer = Leeman Geophysical LLC
maintainer_email = support@leemangeophysical.com
license = BSD 3-Clause
license-file = LICENSE
platform = any
keywords = geology, geophysics
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
Intended Audience :: Science/Research
Operating System :: OS Independent
License :: OSI Approved :: BSD License
url = https://github.com/leemangeophysicalllc/pylook
project_urls =
Documentation = https://leemangeophysicalllc.github.io/pylook/
Release Notes = https://github.com/leemangeophysicalllc/pylook/releases
Bug Tracker = https://github.com/leemangeophysicalllc/pylook/issues
Source Code = https://github.com/leemangeophysicalllc/pylook
[options]
zip_safe = True
packages = find:
include_package_data = True
setup_requires = setuptools_scm
python_requires = >=3.6
install_requires =
importlib_metadata>=1.0.0; python_version < '3.8'
importlib_resources>=1.3.0; python_version < '3.9'
numpy>=1.16.0
pandas>=0.22.0
pint>=0.10.1
pooch>=0.1
[flake8]
max-line-length = 95
application-import-names = pylook
import-order-style = google
copyright-check = True
copyright-author = Leeman Geophysical LLC
inline-quotes = single
multiline-quotes = double
rst-roles = class, data, func, meth, mod
rst-directives = plot
docstring-convention = numpy
ignore = RST902 W503
per-file-ignores = examples/*.py: D T003 T001 E402 I100 I202
[tool:pytest]
# https://github.com/matplotlib/pytest-mpl/issues/69
markers = mpl_image_compare
norecursedirs = build docs .idea
doctest_optionflags = NORMALIZE_WHITESPACE
mpl-results-path = test_output
show-capture = False
[build_sphinx]
source-dir = docs/source
build-dir = docs/build
all-files = True