-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.15 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.15 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="tatoebatools",
version="0.2.3",
author="L.Beaudoux",
description="A library for downloading and reading data from Tatoeba",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/LBeaudoux/tatoebatools",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
],
python_requires=">=3.8.0",
install_requires=[
"beautifulsoup4>=4.12.2",
"importlib-resources>=6.1.1;python_version<'3.9'",
"pandas>=2.0.3",
"requests>=2.31.0",
"SQLAlchemy>=2.0.23",
"tqdm>=4.66.1",
],
)