This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (70 loc) · 1.95 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# pyproject.toml
[build-system]
requires = ["setuptools>=64", "wheel", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "mcce_benchmark"
dynamic = ["version"]
description = "MCCE benchmarking against Dr. Emil Axelov's pKa Database v1 (http://compbio.clemson.edu/lab/software/5/)"
readme = "README.md"
authors = [
{name = "Cat Chenal @ GunnerLab"},
{name = "Junjun Mao @ GunnerLab"},
]
maintainers = [
{name = "Cat Chenal @ GunnerLab"},
]
license = {file = "LICENSE"}
keywords = [
"biophysics",
"proteomics",
"cheminformatics",
"drug design",
"Monte Carlo simulation",
"pKa benchmark"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Biophysicists, Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.10"
dependencies = [
"ipykernel",
"ipython",
"matplotlib",
"numpy",
"pandas",
"pytest",
"scipy",
]
[project.scripts]
bench_setup = "mcce_benchmark.cli:bench_cli"
# bench_batch used in crontab: submits 1 batch of size n_batch:
bench_batch = "mcce_benchmark.batch_submit:launch_cli"
bench_analyze = "mcce_benchmark.pkanalysis:analyze_cli"
bench_compare = "mcce_benchmark.comparison:compare_cli"
[project.urls]
Source = "https://github.com/GunnerLab/MCCE_Benchmarking"
[tool.setuptools.packages]
find = {}
[tool.setuptools.package-data]
"mcce_benchmark.data" = ["*.txt", "*.tsv", "*.csv", "*.pdb", "*.sh"]
[tool.setuptools_scm]
local_scheme = "no-local-version" # required for PyPI and TestPyPI
version_file = "mcce_benchmark/_version.py"
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore::UserWarning",
]
[flake8]
ignore = ['E203', 'E266', 'E501', 'W503']
max-line-length = 120
[tool.black]
line-length = 120
target-version = ['py310']