-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 1.02 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
[tool.poetry]
name = "searchcode"
version = "0.6.4"
description = "Simple, comprehensive code search"
authors = ["Ritchie Mwewa <rly0nheart@duck.com>"]
license = "GPLv3+"
readme = "README.md"
homepage = "https://searchcode.com"
repository = "https://codeberg.org/rly0nheart/searchcode-python"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English"
]
packages = [
{ include = "searchcode", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.32.2"
rich-click = "^1.8.9"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.1.2"
pytest = ">=8.3.5,<10.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
sc = "searchcode._cli.app:cli"
searchcode = "searchcode._cli.app:cli"