-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
99 lines (89 loc) · 2.1 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
# see documentation, e.g.
# - https://packaging.python.org/tutorials/packaging-projects/#configuring-metadata
# - https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
# - https://www.python.org/dev/peps/pep-0314/
[metadata]
author = Nicolas Renaud
author_email = [email protected]
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
description = Creates 3d meshes from microscopy experimental data
keywords =
materials-science
mesh-generation
microscopy
long_description = file: README.md
long_description_content_type = text/markdown
name = nanomesh
project_urls =
Bug Tracker = https://github.com/hpgem/nanomesh/issues
url = https://github.com/hpgem/nanomesh
version = 0.9.1
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
IPython!=7.23 # 7.23 contains a bug that prevents matplotlib inline
ipywidgets
itkwidgets
matplotlib>=3.5
meshio>=5.3
numpy
pyvista
scikit-image
scikit-learn
scipy
triangle
[options.data_files]
# This section requires setuptools>=40.6.0
# It remains empty for now
# Check if MANIFEST.in works for your purposes
[options.extras_require]
develop =
# deployment
bump2version
# linting
isort
pre-commit
yapf
# testing
coverage
nbmake
pytest
pycodestyle
# documentation
jupytext
nbsphinx
nbsphinx-link
recommonmark
sphinx
sphinx_rtd_theme
autodocsumm
publishing =
twine
wheel
[options.packages.find]
include = nanomesh, nanomesh.*
[coverage:run]
branch = True
source = nanomesh
[tool:pytest]
testpaths = tests
norecursedirs=tests/helpers
# Define `python setup.py build_sphinx`
[build_sphinx]
source-dir = docs
build-dir = docs/_build
all_files = 1
builder = html
[mypy]
ignore_missing_imports = True
files = nanomesh, tests
allow_redefinition = True