-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (50 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
53 lines (50 loc) · 1.42 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
[build-system]
# build the package with [flit](https://flit.readthedocs.io)
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[project]
# See https://www.python.org/dev/peps/pep-0621/
name = "biosimdb-app"
dynamic = ["version"] # read from biosimdb_app/__init__.py
description = "An application for the BioSimDB project to store and download biomolecular simulation data."
authors = [{name = "Jas Kalayan", email = "jas.kalayan@stfc.ac.uk"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Development Status :: 2 - Pre-Alpha",
"Framework :: Flask"
]
keywords = ["BioSimDB", "database", "biomolecular simulation",
"molecular dynamics"]
requires-python = ">=3.8"
dependencies = [
"Flask==3.1.3",
"boto3==1.34.54",
"aiida-core>=2.4.0,<3",
"Werkzeug==3.1.6",
"gunicorn==23.0.0",
"pyvis==0.3.2",
"python-dotenv==1.0.1",
"MDAnalysis==2.7.0",
"biopython==1.84",
"rcsbsearchapi==1.6.0",
]
[project.urls]
Source = "https://github.com/PSDI-UK/biosimdb-app"
[project.optional-dependencies]
testing = [
"pgtest==1.3.2",
"wheel==0.43.0",
"coverage[toml]",
"pytest==8.2.2",
"pytest-cov==5.0.0",
"pytest-sugar==1.0.0"
]
pre-commit = [
"pre-commit==3.7.1",
"pylint==3.2.5"
]