-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
40 lines (36 loc) · 935 Bytes
/
pyproject.toml
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "feed-seeker"
version = "1.1.0"
authors = [
{name = "Colin Carroll", email = "[email protected]"},
]
description = "Find rss, atom, xml, and rdf feeds on webpages"
readme = "README.rst"
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"beautifulsoup4>=4.6.0",
"lxml>=4.1.1",
"requests>=2.18.4",
"publicsuffix>=1.1.0",
"urllib3>=1.24.1",
"pytest==4.5.0",
"responses>=0.10.6",
"typing>=3.6.6"
]
[project.optional-dependencies]
test = [
"pytest", "pytest-cov"
]
[project.urls]
"Homepage" = "https://mediacloud.org"