-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
63 lines (60 loc) · 1.84 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[project]
name = "bept"
version = "0.1.0"
description = "BEPT is a Beginner friendly Electrostatics for Protein analysis Tool, a cross-platform interactive and user-friendly tool for protein electrostatics using APBS and PDB2PQR."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"beaupy",
"biopython>=1.84",
"click>=8.1.7",
"fzf-bin>=0.55.0",
"pandas>=2.2.2",
"pdb2pqr>=3.6.2",
"rich-click>=1.8.3",
"rich>=13.8.0",
"tabulate>=0.9.0",
"textual>=0.79.1",
"toml>=0.10.2",
"trogon>=0.5.0",
]
authors = [
{name = "Anirudh Gupta"},
{name = "Akshita Sunsugu Panliswami"},
{name = "Aditya Thakkar"},
{name = "Kishan Gowda"},
{name = "G Hasini"},
{name = "Soham Paul"},
{name = "Aditey Nandan"},
{name = "Ritabrata Saha"},
{name = "Shreyan Priyadarshi"},
{name = "Deeptam Bhar"},
]
maintainers = [
{name = "Anirudh Gupta"},
]
license = {file = "LICENSE"}
keywords = ["apbs", "pdb2pqr", "protein", "electrostatics", "cli", "dx2cube", "cube", "bept"]
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
]
[project.urls]
homepage = "https://github.com/IISc-Software-iGEM/bept"
documentation = "https://github.com/IISc-Software-iGEM/bept/tree/main/docs"
repository = "https://github.com/IISc-Software-iGEM/bept.git"
[project.scripts]
bept = "bept.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"