-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.09 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
[tool.poetry]
name = "s2cache"
version = "0.2.3"
description = "Unofficial Semantic Scholar API with Local Cache"
authors = ["Akshay <akshay.badola.cs@gmail.com>"]
license = "MIT"
readme = "README.org"
homepage = "https://github.com/akshaybadola/s2cache"
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Natural Language :: English",
"Topic :: Education",
"Topic :: Scientific/Engineering",
]
keywords = ["semanticscholar", "bibliography", "async"]
exclude = ["s2cache/*.bak*"]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.26.0"
common_pyutil = "^0.8.5"
aiohttp = "^3.8.1"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
poetry = "^1.1.8"
toml = "^0.10.2"
pytest-cov = "^3.0.0"
[tool.poetry.scripts]
test = "pytest:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"