-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 984 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (26 loc) · 984 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "funding-signals"
version = "0.1.0"
description = "Python client for the Funding Signals API — scored B2B leads from public SEC Form D filings"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.9"
authors = [{ name = "Funding Signals", email = "hello@fundingsignals.net" }]
keywords = ["sec", "form-d", "funding", "b2b", "sales-leads", "api-client", "prospecting"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Financial",
]
dependencies = ["requests>=2.25"]
[project.urls]
Homepage = "https://fundingsignals.net"
Documentation = "https://fundingsignals.net/docs"
Repository = "https://github.com/labombas/funding-signals-python"
[tool.hatch.build.targets.wheel]
packages = ["src/funding_signals"]