-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 987 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 987 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "modelcif"
version = "1.7"
requires-python = ">=3.6"
authors = [
{name="Ben Webb", email="benmwebb@gmail.com"}
]
readme = "README.md"
description = 'Package for handling ModelCIF mmCIF and BinaryCIF files'
license = {text="MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dependencies = ['ihm>=2.10']
[project.urls]
homepage = 'https://github.com/ihmwg/python-modelcif'
repository = 'https://github.com/ihmwg/python-modelcif'
documentation = 'https://python-modelcif.readthedocs.io/'
issues = 'https://github.com/ihmwg/python-modelcif/issues/'
changelog = 'https://github.com/ihmwg/python-modelcif/blob/main/ChangeLog.rst'
[tool.ruff.lint]
select = ["E", "F"]
ignore = ["E402"]
[tool.setuptools]
packages = ['modelcif', 'modelcif.util']