-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (80 loc) · 2.22 KB
/
Copy pathpyproject.toml
File metadata and controls
90 lines (80 loc) · 2.22 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "prefect-x-api-scraper"
version = "0.1.0"
description = "Prefect tasks for scheduled Twitter search, profiles, timelines, and trends through TwexAPI. Not affiliated with X Corp."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "TwexAPI" }]
keywords = [
"data-pipelines",
"prefect",
"prefect-collection",
"prefect-integration",
"social-media-api",
"tweet-search",
"twitter-api",
"twitter-search",
"twexapi",
"workflow-orchestration",
"x-api",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.28.1",
"pydantic>=2.11.2",
"prefect>=3.8.3",
]
[project.urls]
Documentation = "https://github.com/twexapi-dev/prefect-x-api-scraper"
Homepage = "https://docs.twexapi.io"
Issues = "https://github.com/twexapi-dev/prefect-x-api-scraper/issues"
Source = "https://github.com/twexapi-dev/prefect-x-api-scraper"
[project.entry-points."prefect.collections"]
prefect_x_api_scraper = "prefect_x_api_scraper"
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"pytest-cov>=5.0",
"ruff>=0.9",
"tomli>=2.0; python_version < '3.11'",
]
[tool.pytest.ini_options]
addopts = [
"--cov=prefect_x_api_scraper",
"--cov-branch",
"--cov-report=term-missing",
"--cov-fail-under=100",
]
asyncio_default_fixture_loop_scope = "session"
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["prefect_x_api_scraper"]
[tool.coverage.report]
fail_under = 100
show_missing = true
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
select = ["B", "E", "F", "I", "SIM", "UP"]
[tool.hatch.build.targets.wheel]
packages = ["prefect_x_api_scraper"]