-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (34 loc) · 958 Bytes
/
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pub.tools"
version = "5.0.6.1"
readme = "README.md"
requires-python = ">=3.11"
description = "Get publication metadata from NCBI's eUtils and generate citations."
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
authors = [
{ name = "Eric Wohnlich", email = "[email protected]" }
]
license = { text = "GPL" }
dependencies = [
"biopython>=1.83",
"requests",
"lxml",
"unidecode",
"beautifulsoup4",
"deprecation"
]
[project.urls]
homepage = "https://github.com/imsweb/pub.tools"
documentation = "https://imsweb.github.io/pub.tools"
[tool.setuptools.packages.find]
include = ["pub"]
[tool.flake8]
max-line-length = 120