forked from hesreallyhim/awesome-claude-code
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (58 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
68 lines (58 loc) · 1.78 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "awesome-claude-code"
version = "2.0.0"
description = "A curated list of slash-commands, CLAUDE.md files, CLI tools, and other resources for enhancing Claude Code workflows"
authors = [{ name = "Really Him", email = "hesreallyhim@proton.me" }]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
dependencies = ["PyGithub>=2.1.1"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"requests>=2.31.0",
"python-dotenv>=1.0.0",
"types-requests>=2.31.0",
"types-PyYAML>=6.0.0",
"ruff>=0.1.0",
"pre-commit>=3.5.0",
]
[project.urls]
"Homepage" = "https://github.com/anthropics/awesome-claude-code"
"Bug Tracker" = "https://github.com/anthropics/awesome-claude-code/issues"
"Repository" = "https://github.com/anthropics/awesome-claude-code"
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"] # unused imports in __init__ files
[tool.ruff.lint.isort]
known-first-party = ["scripts"]
[tool.setuptools.packages.find]
where = ["."]
include = ["scripts*"]
[tool.setuptools.package-data]
"scripts" = ["*.csv"]