-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.46 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (51 loc) · 1.46 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
54
55
56
57
58
59
[build-system]
requires = ["setuptools>=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "aromanexus"
version = "0.3.0"
description = "Provenance-aware integration for odorant, flavor-molecule, and olfactory-receptor data"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.11"
dependencies = [
"beautifulsoup4>=4.12",
"openpyxl>=3.1",
"pandas>=2.1",
"requests>=2.31",
"selenium>=4.17",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
]
keywords = ["cheminformatics", "flavor", "odorant", "olfaction", "retention-index"]
[project.urls]
Repository = "https://github.com/rastagan-git/AromaNexus"
Issues = "https://github.com/rastagan-git/AromaNexus/issues"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"ruff>=0.6",
]
[project.scripts]
aromanexus = "aromanexus.cli:main"
flavor-data = "aromanexus.cli:main"
[tool.setuptools.packages.find]
include = ["aromanexus*", "flavor_data_crawler*"]
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]