-
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 1.29 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (37 loc) · 1.29 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sec-edgar-mcp"
version = "1.1.0"
description = "SEC EDGAR MCP server for company filings and financial data"
authors = [{ name = "Stefano Amorelli", email = "stefano@amorelli.tech" }]
readme = "README.md"
requires-python = ">=3.11"
license = { text = "AGPL-3.0" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]
dependencies = ["mcp[cli]>=1.7.1,<2", "sec-edgar-toolkit[pandas]>=0.2.0", "requests>=2.31.0"]
[tool.setuptools.packages.find]
where = ["."]
include = ["sec_edgar_mcp*"]
[project.urls]
"Homepage" = "https://github.com/stefanoamorelli/sec-edgar-mcp"
"Bug Tracker" = "https://github.com/stefanoamorelli/sec-edgar-mcp/issues"
[project.scripts]
sec-edgar-mcp = "sec_edgar_mcp.server:main"
[project.optional-dependencies]
dev = ["ruff>=0.1.14", "mypy>=1.8", "pytest>=8"]
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
# Ruff's implicit defaults widen with each release; pin the set the code
# was written against so a CLI upgrade cannot turn CI red on its own.
select = ["E4", "E7", "E9", "F"]
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true