-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.53 KB
/
setup.py
File metadata and controls
43 lines (40 loc) · 1.53 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
36
37
38
39
40
41
42
43
from pathlib import Path
from setuptools import find_packages, setup
README = (Path(__file__).parent / "README.md").read_text(encoding="utf-8")
REQUIREMENTS = (Path(__file__).parent / "requirements.txt").read_text().splitlines()
setup(
name="autospred",
version="0.3.0",
description=(
"A Lazy Predict-style library for quickly benchmarking various "
"spatial regression models using Scikit-learn, MGWR, and "
"PySAL's spreg."
),
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/cybergis/autospred",
author="CyberGIS Center",
author_email="help@cybergis.org",
license="Apache-2.0",
classifiers=[
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords="spatial regression benchmarking gis",
python_requires=">=3.9",
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=REQUIREMENTS,
extras_require={
"dev": ["flake8", "pytest", "pytest-cov"],
},
include_package_data=True,
)