-
Notifications
You must be signed in to change notification settings - Fork 129
/
pyproject.toml
50 lines (44 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
[build-system]
requires = ["setuptools>=69.1", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pybliometrics"
authors = [{name = "'John Kitchin and Michael E. Rose", email = "[email protected]"}]
maintainers = [{name = "Michael E. Rose", email = "[email protected]"}]
description = "Python-based API-Wrapper to access Scopus"
readme = "README.rst"
license = {text = "MIT"}
dependencies = [
"requests",
"tqdm",
"urllib3",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Documentation :: Sphinx"
]
keywords = ["scopus"]
dynamic = ["version"]
requires-python = ">=3.9,<=3.13"
[project.urls]
Homepage = "https://github.com/pybliometrics-dev/pybliometrics"
"Bug Tracker" = "https://github.com/pybliometrics-dev/pybliometrics/issues"
"Documentation (stable)" = "https://pybliometrics.readthedocs.io/en/stable/"
"Documentation (latest)" = "https://pybliometrics.readthedocs.io/en/latest/"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["pybliometrics", "pybliometrics.*"]
[tool.setuptools_scm]