-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
58 lines (55 loc) · 1.63 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
from setuptools import find_packages, setup
import versioneer
with open("README.md", "r") as fp:
LONG_DESCRIPTION = fp.read()
setup(
name="pyecotaxa",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Simon-Martin Schroeder",
author_email="[email protected]",
description="Query EcoTaxa and process its output",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/ecotaxa/pyecotaxa",
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
install_requires=[
"pandas",
"numpy",
"python-dotenv",
"requests",
"tqdm",
"werkzeug",
"semantic_version",
"atomicwrites",
],
python_requires=">=3.6",
extras_require={
"tests": [
# Pytest
"pytest",
"pytest-cov",
"ruff",
],
"docs": [
"sphinx >= 1.4",
"sphinx_rtd_theme",
"sphinx-autodoc-typehints>=1.10.0",
],
"dev": ["black", "versioneer"],
},
entry_points={},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
],
)