-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
172 lines (159 loc) · 3.54 KB
/
pyproject.toml
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# package build
# https://peps.python.org/pep-0517/
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
# package basics
# https://peps.python.org/pep-0621/
[project]
name = "simulariumio"
description = "Python package that converts simulation outputs to the format consumed by the Simularium viewer website"
keywords = []
readme = "README.md"
requires-python = ">=3.8"
license = { text = "Apache Software License 2.0" }
authors = [
{ email = "[email protected]", name = "Blair Lyons" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
dynamic = ["version"]
dependencies = [
"numpy>=1.19.0",
"pandas>=1.1.2",
"pint>=0.17",
]
[project.urls]
Homepage = "https://github.com/Simularium/simulariumio"
"Bug Tracker" = "https://github.com/Simularium/simulariumio/issues"
Documentation = "https://Simularium.github.io/simulariumio"
"User Support" = "https://github.com/Simularium/simulariumio/issues"
# extra dependencies
# https://peps.python.org/pep-0621/#dependencies-optional-dependencies
[project.optional-dependencies]
mcell = [
"scipy>=1.5.2",
]
physicell = [
"scipy>=1.5.2",
]
md = [
"MDAnalysis>=2.0.0",
"MDAnalysisTests>=2.0.0",
]
cellpack = [
"cellpack==1.0.3",
]
tutorial = [
"jupyter",
"scipy>=1.5.2",
"MDAnalysis>=2.0.0",
"MDAnalysisTests>=2.0.0",
]
benchmark = [
"awscli>=1.20",
"quilt3",
]
lint = [
"black>=22.3.0",
"check-manifest>=0.48",
"flake8>=3.8.3",
"flake8-debugger>=3.2.1",
# "flake8-pyprojecttoml==0.0.1", # ignored until this package is only Py38
"flake8-typing-imports>=1.9.0",
"isort>=5.7.0",
"mypy>=0.790",
"pre-commit>=2.20.0",
]
test = [
"coverage>=5.1",
"pytest>=5.4.3",
"pytest-cov>=2.9.0",
"pytest-raises>=0.11",
"nbmake",
]
docs = [
# Sphinx + Doc Gen + Styling
"m2r2>=0.2.7",
"Sphinx>=4.0.0",
"furo>=2022.4.7",
# Extensions
"numpydoc",
"sphinx-copybutton",
# TODO: Pins
"docutils>=0.18,<0.19",
]
dev = [
"ipython",
]
# entry points
# https://peps.python.org/pep-0621/#entry-points
# [project.entry-points."console_scripts"]
# build settings
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[tool.setuptools]
zip-safe = false
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["*docs/*", "*tests/*"]
[tool.setuptools.package-data]
"*" = [
"*.yaml",
"*.yml",
"py.typed",
"*.csv",
"*.gif",
"*.md",
"*.json",
]
# tools
[tool.black]
line-length = 88
[tool.isort]
ensure_newline_before_comments = true
force_grid_wrap = 0
include_trailing_comma = true
line_length = 88
multi_line_output = 3
profile = "black"
use_parentheses = true
# https://github.com/mgedmin/check-manifest#configuration
[tool.check-manifest]
ignore = [
".editorconfig",
".pre-commit-config.yaml",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"Justfile",
".cookiecutter.yaml",
"*docs/*",
"*examples/*",
"*benchmarks/**",
"*tests/**",
"file_format.md",
"environment.yml",
]
[tool.mypy]
files = "simulariumio/*.py"
ignore_missing_imports = true
disallow_untyped_defs = true
check_untyped_defs = true
show_error_codes = true
# https://flake8.pycqa.org/en/latest/user/options.html
# https://gitlab.com/durko/flake8-pyprojecttoml
[tool.flake8]
max-line-length = 88
ignore = "E203,E402,W291,W503"
min-python-version = "3.8.0"
per-file-ignores = [
"__init__.py:F401",
]
exclude = [
"*/pyMCDS.py",
]