-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.83 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>=75.0"]
build-backend = "setuptools.build_meta"
[project]
name = "instaparser"
dynamic = ["version"]
description = "Official Python client library for the Instaparser API"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Instapaper", email = "support@instaparser.com" },
]
keywords = ["instaparser", "article", "parser", "web-scraping", "content-extraction", "pdf", "summarization"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup :: HTML",
"Typing :: Typed",
]
dependencies = []
[dependency-groups]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.1.0",
"mypy>=1.0",
]
build = [
"build>=1.4.0",
"twine>=6.2.0"
]
[project.urls]
Homepage = "https://instaparser.com"
Documentation = "https://instaparser.com/docs"
Repository = "https://github.com/Instapaper/instaparser-python.git"
Issues = "https://github.com/Instapaper/instaparser-python/issues"
Changelog = "https://github.com/Instapaper/instaparser-python/blob/main/CHANGELOG.md"
[tool.setuptools.dynamic]
version = {attr = "instaparser.__version__"}
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.mypy]
packages = ["instaparser", "tests"]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]