-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
49 lines (46 loc) · 1.58 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
[build-system]
requires = ["setuptools>64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ConservedWaterSearch"
version = "0.4.1"
authors = [
{ name = "Domagoj Fijan" },
{ name = "Jelena Tosovic", email = "jecat_90@live.com" },
{ name = "Marko Jukic" },
{ name = "Urban Bren" },
]
description = "Conserved water search is a tool for finding conserved water molecules from MD trajectories."
readme = { file = "README.rst", content-type = "text/x-rst" }
license = { file = "LICENSE" }
keywords = [
"simulation",
"analysis",
"molecular dynamics",
"biosimulation",
"conserved water",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9"
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://github.com/JecaTosovic/ConservedWaterSearch"
Documentation = "https://ConservedWaterSearch.readthedocs.io/"
Source = "https://github.com/JecaTosovic/ConservedWaterSearch"
Issue = "https://github.com/JecaTosovic/ConservedWaterSearch/issues"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements/requirements.txt"] }
optional-dependencies = { debug = { file = [
"requirements/requirements-debug.txt",
] }, nglview = { file = [
"requirements/requirements-nglview.txt",
] } }