forked from ViennaRNA/ViennaRNA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml.in
73 lines (66 loc) · 1.93 KB
/
pyproject.toml.in
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "@PACKAGE_NAME@"
version = "@PACKAGE_VERSION@"
description = "A library for the prediction and comparison of RNA secondary structures."
authors = [
{ name = "Ronny Lorenz", email = "ronny@tbi.univie.ac.at" },
{ name = "Ivo L. Hofacker", email = "ivo@tbi.univie.ac.at" },
]
maintainers = [
{ name = "Ronny Lorenz", email = "rna@tbi.univie.ac.at" },
{ name = "Ayaan Hossain", email = "auh57@psu.edu" },
]
requires-python = ">=3.8"
license = {file = "COPYING"}
keywords = [
'synthetic',
'computational',
'biology',
'genetic',
'DNA',
'RNA',
'secondary',
'structure',
'prediction',
'minimum',
'free',
'energy',
'centroid',
'subopt',
'mfe',
'ViennaRNA',
'dynamic',
'partition function',
'modified base',
'constraints',
'programming']
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
]
dynamic = ["readme"]
[project.urls]
Homepage = "@PACKAGE_URL@"
Documentation = "https://viennarna-python.readthedocs.io/"
"Bug Tracker" = "https://github.com/ViennaRNA/ViennaRNA/issues"
Changelog = "@PACKAGE_URL@/changelog.html"
[tool.setuptools.package-dir]
RNA = "interfaces/Python/RNA"
ViennaRNA = "interfaces/Python/ViennaRNA"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q -v"
testpaths = ["tests/python"]
[tool.cibuildwheel.macos.environment]
MACOSX_DEPLOYMENT_TARGET = "10.14"