-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 1.42 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
[build-system]
requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "stacksearch"
version = "2"
license = "MIT"
description = "StackSearch is a python CLI and library that provides a way to search StackExchange sites."
authors = [ "Bryan Hu <bryan.hu.2020@gmail.com>",]
readme = "README.md"
documentation = "https://stacksearch.readthedocs.io/en/latest/index.html"
repository = "https://github.com/ThatXliner/stacksearch"
keywords = [ "stackexchange", "webscrape", "api",]
classifiers = [ "Programming Language :: Python :: Implementation :: CPython", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", "Intended Audience :: System Administrators", "Environment :: Console", "Natural Language :: English", "Topic :: Utilities",]
include = ["README.md", "LICENSE"]
[tool.poetry.scripts]
stacksearch = "stacksearch.__main__:main"
[tool.poetry.dependencies]
python = "^3.6"
beautifulsoup4 = "^4.9.3"
aiohttp = "^3.7.3"
rich = "^9.11.0"
unmarkd = "^0.1.0"
[tool.poetry.dev-dependencies]
pylint = "^2.6.0"
mypy = "^0.790"
black = "^20.8b1"
pytest = "^6.2.1"
isort = "^5.7.0"
pytest-cov = "^2.10.1"
pytest-asyncio = "^0.14.0"
toml = "^0.10.2"
Sphinx = "^3.4.2"
frosch = "^0.1.7"