-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 745 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 745 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
from setuptools import setup, find_packages
setup(
name="franck",
version="1.0.8",
url="https://github.com/MarcT0K/Franck",
author="Marc DAMIE",
author_email="marc.damie@inria.fr",
description="Crawlers for various Fediverse projects",
packages=find_packages(),
license="GPLv3",
python_requires=">=3.8",
install_requires=[
"aiohttp[speedups]",
"aiohttp_retry",
"tqdm",
"numpy<=1.26", # Was creating an import error with pandas when importing the package
"scipy",
"fastparquet",
"requests",
"colorlog",
"langdetect",
],
entry_points={
"console_scripts": [
"franck = franck.cli:main",
],
},
)