-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.39 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
[build-system]
requires = ["setuptools", "Cython~=0.29.23"]
build-backend = "setuptools.build_meta"
[project]
name = "pycbf"
version = "0.9.6.7.dev"
description = "An API for CBF/imgCIF Crystallographic Binary Files"
authors = [
{ name = "Herbert J. Bernstein", email = "[email protected]" },
{ name = "Paul J. Ellis" },
]
maintainers = [{ name = "Nicholas Devenish", email = "[email protected]" }]
license = { text = "LGPL-2.1-or-later" }
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.6"
dependencies = ["numpy>=1.17"]
[project.urls]
Homepate = "http://www.bernstein-plus-sons.com/software/CBF/"
Repository = "https://github.com/dials/pycbf"
[project.optional-dependencies]
dev = [
"Cython~=0.29.23",
"toml~=0.10.2",
"pytest~=6.2.4",
"dials-data",
"bump2version~=1.0.1",
]
[tool.ruff]
exclude = ["src/pycbf/_wrapper.py"]
[tool.ruff.format]
exclude = ["cbflib/", "src/pycbf/__init__.py"]
[tool.towncrier]
package = "pycbf"
package_dir = ".."
filename = "CHANGELOG.rst"
[tool.pytest.ini_options]
addopts = "--regression -ra"
testpaths = ["tests"]