forked from plantnet/gbif-dl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.47 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
from setuptools import setup, find_packages
gbif_dl_version = "0.1.1"
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="gbif-dl",
version=gbif_dl_version,
author="Fabian-Robert Stöter (Inria)",
author_email="fabian-robert.stoter@inria.fr",
url="https://github.com/plantnet/gbif-dl",
description="Machine learning data loaders for GBIF",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
python_requires=">=3.6",
install_requires=[
"aiofiles>=0.6.0",
"aiohttp>=3.7.2",
"aiohttp-retry>=2.3",
"aiostream>=0.4.3",
"pygbif>=0.5.0",
"requests-cache==0.7.4",
"pescador>=2.1.0",
"python-dwca-reader",
"filetype>=1.0.0",
"tqdm",
"typing-extensions; python_version < '3.8'",
],
extras_require={"tests": ["pytest"], "docs": ["pdoc3"]},
# entry_points={"console_scripts": ["gbif_dl=gbif_dl.cli:download"]},
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)