-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.2 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = 'redditwarp'
version = "1.3.0.post.dev"
description = "A library for interacting with the Reddit API."
authors = ["Pyprohly <[email protected]>"]
readme = "README.md"
license = 'MIT'
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
keywords = ['reddit', 'api', 'wrapper']
[tool.poetry.dependencies]
python = "^3.8"
# requests = {version = "^2.26.0", optional = true}
# urllib3 = {version = "^1.26.7", optional = true}
# httpx = {version = "^0.22.0", optional = true}
# aiohttp = {version = "^3.7.4", optional = true}
# websocket-client = {version = "^1.2.1", optional = true}
# websockets = {version = "^10.0", optional = true}
[tool.poetry.group.dev.dependencies]
mypy = "^0.991"
pytest = "^7.2.0"
ruff = "^0.0.226"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff.lint]
select = ["F"]