-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (75 loc) · 2.4 KB
/
pyproject.toml
File metadata and controls
84 lines (75 loc) · 2.4 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["setuptools >= 46.3.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pmidcite"
description="Turbocharge a PubMed literature search using citation data from the NIH"
version = "0.3.1"
license = "AGPL-3.0-or-later"
authors = [
{name = 'DV Klopfenstein, PhD', email = 'dvklopfenstein@protonmail.com'},
]
maintainers = [
{name = 'DV Klopfenstein, PhD', email = 'dvklopfenstein@protonmail.com'},
]
readme = {file="README.md", content-type="text/markdown"}
keywords = [
"library",
"pubmed", # 320
"ncbi", # 225
"command-line-tool", # 7,622
"literature-mining", # 48
"citations", # 276
"Citation-network", # 59
"google-search", # 379
"google-scholar", # 153
]
dependencies = [
"requests",
]
# https://pypi.org/classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
]
# Needed for assignment expressions & the walrus operator
requires-python = '>=3.9'
[project.urls]
"Homepage" = "https://github.com/dvklopfenstein/pmidcite"
"Changelog" = "https://github.com/dvklopfenstein/pmidcite/blob/main/CHANGELOG.md"
#"Documentation" = "https://dvklopfenstein.readthedocs.io"
"Code" = "https://github.com/dvklopfenstein/pmidcite"
"Issue tracker" = "https://github.com/dvklopfenstein/pmidcite/issues"
[project.scripts]
icite = "pmidcite.scripts.icite:main"
sumpaps = "pmidcite.scripts.summarize_papers:main"
[tool.setuptools]
packages = [
'pmidcite',
'pmidcite.cli',
'pmidcite.eutils',
'pmidcite.eutils.cmds',
'pmidcite.eutils.pubmed',
'pmidcite.eutils.pubmed.counts',
'pmidcite.icite',
'pmidcite.icite.dnldr',
'pmidcite.scripts',
'pmidcite.plot',
]