-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
executable file
·47 lines (40 loc) · 1.61 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
[project]
name = "chilife"
description = 'A package for modeling non-canonical amino acid side chain ensembles.'
readme = 'README.md'
license= {name = 'GNU GPLv3', file = 'LICENSE'}
authors=[{name = 'Maxx Tessmer', email='[email protected]'},
{name = 'Stefan Stoll', email='[email protected]'}]
keywords=['Spin-label', 'EPR', 'DEER', 'PELDOR', 'Side-chain']
dynamic = ["version"]
requires-python = ">= 3.8,<3.13"
dependencies = ['numpy>=1.23.0',
'scipy>=1.6.3',
'matplotlib>=3.3.4',
'numba>=0.57.0',
'mdanalysis>=2.0.0',
'tqdm>=4.45.0',
'pytest>=6.2.2',
'memoization>=0.3.1',
'igraph>=0.11.2',
'rtoml>=0.9.0']
classifiers=['License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12']
[project.urls]
homepage = 'https://github.com/StollLab/chiLife'
documentation = "https://stolllab.github.io/chiLife/"
[project.optional-dependencies]
smiles2residue = ["rdkit>=2023.9.6"]
[tool.setuptools]
script-files = ['scripts/update_rotlib.py', 'scripts/oldProteinIC.py']
[tool.setuptools.package-data]
chilife = ['data/*', 'data/*/*', 'data/*/*/*']
[tool.setuptools.dynamic]
version = {attr = "chilife.__version__"}
[build-system]
requires = ["setuptools", "matplotlib", "wheel"]
build-backend = "setuptools.build_meta"