This repository has been archived by the owner on Oct 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
60 lines (57 loc) · 1.52 KB
/
setup.py
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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="mediacrawl",
version="0.0.1",
description="Crawl reporting from media web sites.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="crawler spider journalism text",
author="Friedrich Lindenberg",
author_email="[email protected]",
url="https://github.com/opensanctions/mediacrawl",
license="MIT",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
namespace_packages=[],
include_package_data=True,
package_data={"": ["mediacrawl/py.typed"]},
zip_safe=False,
install_requires=[
"sqlalchemy[asyncio]",
"aiosqlite",
"aiohttp[speedups]",
"asyncpg",
"pydantic",
"pydantic_yaml",
"articledata",
"pantomime",
"orjson",
"pyyaml",
"trafilatura",
"fasttext",
"languagecodes",
"charset-normalizer",
"shortuuid >= 1.0.1, < 2.0.0",
"click >= 8.0.0, < 8.1.0",
],
tests_require=[],
entry_points={
"console_scripts": [
"mediacrawl = mediacrawl.cli:cli",
],
},
extras_require={
"dev": [
"wheel>=0.29.0",
"twine",
"mypy",
"flake8>=2.6.0",
"pytest",
"pytest-cov",
"coverage>=4.1",
"types-setuptools",
"types-requests",
],
},
)