-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
53 lines (45 loc) · 1.18 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pensa"
version = "0.6.0"
description = "exploratory analysis and comparison of biomolecular conformational ensembles."
authors = [
{name = "Martin Voegele, Neil Thomson, Sang Truong, Jasper McAvity", email = "martinvoegele1989@gmail.com"}
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"numpy>=1.23",
"scipy",
"pandas",
"matplotlib",
"deeptime",
"MDAnalysis==2.8",
"biotite",
"gpcrmining",
]
requires-python = "==3.10.*"
[project.urls]
Documentation = "https://pensa.readthedocs.io/en/latest/"
Source = "http://github.com/drorlab/pensa"
[metadata]
# Include the license file in the wheel.
license_files = ["LICENSE"]
[tool.setuptools.packages.find]
include = [
"pensa",
"pensa.preprocessing",
"pensa.features",
"pensa.comparison",
"pensa.dimensionality",
"pensa.clusters",
"pensa.statesinfo"
]