-
Notifications
You must be signed in to change notification settings - Fork 168
/
pyproject.toml
76 lines (70 loc) · 2.13 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
[build-system]
requires = ["setuptools>=69.1", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pubmed_parser"
description = "A python parser for Pubmed Open-Access Subset and MEDLINE XML repository"
readme = "README.md"
license = {text = "MIT (c) 2015 - 2024 Titipat Achakulvisut, Daniel E. Acuna"}
authors = [
{name = "Titipat Achakulvisut", email = "my.titipat@gmail.com"}
]
maintainers = [
{name = "Titipat Achakulvisut", email = "my.titipat@gmail.com"},
{name = "Michael E. Rose", email = "Michael.Ernst.Rose@gmail.com"}
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Natural Language :: English",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
keywords = [
"Python",
"MEDLINE",
"PubMed",
"Biomedical corpus",
"Natural Language Processing"
]
dependencies = [
"lxml",
"unidecode",
"requests",
"six",
"numpy"
]
dynamic = ["version"]
[project.optional-dependencies]
tests = [
"pytest",
"pytest-cov"
]
docs = [
"sphinx",
"sphinx_rtd_theme",
"sphinx-gallery"
]
[project.urls]
homepage = "https://github.com/titipata/pubmed_parser"
download = "https://github.com/titipata/pubmed_parser.git"
documentation = "http://titipata.github.io/pubmed_parser"
bug_tracker = "https://github.com/titipata/pubmed_parser/issues"
[tool.setuptools.package-data]
"pubmed_parser.data" = ["*.xml.gz", "*.nxml", "*.txt"]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools_scm]