-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
77 lines (70 loc) · 1.68 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
[project]
name = "lipidlibrarian"
version = "0.2.1"
description = "A Lipidomics Database Explorer Package"
readme = "README.md"
authors = [
{name = "Felix Niedermaier", email = "[email protected]"},
{name = "Konstantinos Mechteridis"},
{name = "Konstantin Pelz"}
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Topic :: Database :: Front-Ends",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3",
]
keywords = ["lipids", "bioinformatics", "development"]
dependencies = [
"requests",
"importlib-metadata",
"numpy",
"pandas",
"tables",
"jsons",
"json2html",
"SQLAlchemy",
"PyMySQL",
"networkx",
"obonet",
"ratelimit",
"rdkit",
"func-timeout",
"liputils",
"sparql-dataframe", # returns SPARQL queries as pandas dataframes
"pygoslin",
"linex2",
]
[project.urls]
"Bug Reports" = "https://github.com/lipitum/lipidlibrarian/issues"
"Source" = "https://github.com/lipitum/lipidlibrarian/"
[project.optional-dependencies]
dev = ["pytest", "flake8", "rpy2"]
test = [
"pytest"
]
lint = [
"flake8"
]
[tool.flake8]
max-line-length = 80
[tool.pytest.ini_options]
testpaths = [
"test"
]
addopts = [
"--import-mode=importlib",
]
[build-system]
requires = [
"setuptools"
]
build-backend = "setuptools.build_meta"
[project.scripts]
lipidlibrarian = "lipidlibrarian.cli:main"