forked from developmentseed/titiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 738 Bytes
/
setup.py
File metadata and controls
32 lines (27 loc) · 738 Bytes
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
"""Fake titiler setup.py for github."""
import sys
from setuptools import setup
sys.stderr.write(
"""
===============================
Unsupported installation method
===============================
titiler no longer supports installation with `python setup.py install`.
Please use `python -m pip install .` instead.
"""
)
sys.exit(1)
# The below code will never execute, however GitHub is particularly
# picky about where it finds Python packaging metadata.
# See: https://github.com/github/feedback/discussions/6456
#
# To be removed once GitHub catches up.
setup(
name="titiler",
install_requires=[
"titiler.core",
"titiler.extensions",
"titiler.mosaic",
"titiler.application",
],
)