-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
128 lines (115 loc) · 2.45 KB
/
pyproject.toml
File metadata and controls
128 lines (115 loc) · 2.45 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
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
[build-system]
requires = ["pdm-backend", "wheel"]
build-backend = "pdm.backend"
[project]
name = "aicsshparam"
version = "0.1.11"
description = "Spherical harmonics parametrization for 3D starlike shapes"
authors = [{ name = "Matheus Viana", email = "matheus.viana@alleninstitute.org" }]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
keywords = ["aicsshparam"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: Free for non-commercial use",
"Natural Language :: English",
"Programming Language :: Python :: 3"
]
dependencies = [
"numpy",
"scipy",
"scikit-image",
"scikit-learn",
"vtk",
"pyshtools>=4.13.1"
]
[project.optional-dependencies]
setup = [
"pytest-runner>=5.2"
]
test = [
"black",
"Flake8-pyproject",
"flake8",
"flake8-debugger",
"pytest",
"pytest-cov",
"pytest-raises"
]
dev = [
"pytest-runner>=5.2",
"black",
"Flake8-pyproject",
"flake8",
"flake8-debugger",
"pytest",
"pytest-cov",
"pytest-raises",
"bump-my-version",
"coverage",
"ipython",
"myst-parser",
"sphinx",
"furo",
"tox",
"twine",
"wheel"
]
all = [
"pytest-runner>=5.2",
"black",
"Flake8-pyproject",
"flake8",
"flake8-debugger",
"pytest",
"pytest-cov",
"pytest-raises",
"bump-my-version",
"coverage",
"ipython",
"myst-parser",
"sphinx",
"furo",
"tox",
"twine",
"wheel"
]
[project.urls]
"Homepage" = "https://github.com/AllenCell/aics-shparam"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
exclude = [
"aicsshparam.tests",
"aicsshparam.tests.*",
"aicsshparam.bin",
"aicsshparam.bin.*"
]
[tool.pdm]
distribution = true
[tool.bumpversion]
commit = true
tag = true
current_version = "0.1.11"
message = "Bump version: {current_version} → {new_version}"
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[[tool.bumpversion.files]]
filename = "src/aicsshparam/__init__.py"
search = '{current_version}'
replace = '{new_version}'
[tool.setuptools.bdist_wheel]
universal = true
[tool.setuptools.aliases]
test = "pytest"
[tool.flake8]
exclude = ["docs/"]
ignore = ["E203", "E402", "W291", "W503"]
max-line-length = 88
[tool.pytest.ini_options]
collect_ignore = ["pyproject.toml"]