-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
63 lines (57 loc) · 1.77 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
59
60
61
62
63
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="untie",
version=read("VERSION").strip(),
author="Anna Rauch",
description=("Trace Information Extraction (TIE) library"),
author_email="[email protected]",
maintainer="Marc Monnerat",
maintainer_email="[email protected]",
long_description=read("README.md"),
long_description_content_type="text/markdown",
python_requires=">=3.8",
packages=["untie", "untie/scripts"],
license_files=("LICENSE.md",),
install_requires=[
"shapely>=2.0.0",
"geocube",
"numpy",
"geopandas",
"mayavi",
"matplotlib",
"rasterio",
"scipy",
"scikit-image",
],
package_data={
"untie": [
"src",
'src/untie/data/swissALTI3d/*',
],
"untie/scripts": [ 'scripts/*',],
},
include_package_data=True,
entry_points={
'console_scripts': [
'untie_demo = untie.scripts.untie_demo:main',
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: GIS",
"Programming Language :: Python",
"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",
],
)