forked from geofileops/geofileops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (44 loc) · 1.39 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
"""Setup file to package geofileops."""
import setuptools
with open("README.md") as fh:
long_description = fh.read()
with open("geofileops/version.txt") as file:
version = file.readline()
setuptools.setup(
name="geofileops",
version=version,
author="Pieter Roggemans",
author_email="[email protected]",
description="Python toolbox to process large vector files faster.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/geofileops/geofileops",
include_package_data=True,
packages=setuptools.find_packages(
exclude=("tests", "benchmark", "benchmark.*"),
include=("geofileops", "geofileops.*"),
),
install_requires=[
"cloudpickle",
"gdal>=3.6,<3.10",
"geopandas>=0.12,<1.1",
"numpy",
"packaging",
"pandas>=1.5",
"psutil",
"pygeoops>=0.4,<0.5",
"pyogrio",
"pyproj",
"shapely>=2,<2.1",
],
extras_require={"full": ["simplification"]},
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: GIS",
],
python_requires=">=3.9",
)