-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (34 loc) · 1018 Bytes
/
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
"""Fake tifeatures setup.py for github."""
import sys
from setuptools import setup
sys.stderr.write(
"""
===============================
Unsupported installation method
===============================
tifeatures 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="tifeatures",
install_requires=[
"orjson",
"asyncpg>=0.23.0",
"buildpg>=0.3",
"fastapi>=0.87",
"jinja2>=2.11.2,<4.0.0",
"geojson-pydantic>=0.4.3",
"pygeofilter>=0.2.0,<0.3.0",
"ciso8601~=2.2.0",
"starlette-cramjam>=0.3,<0.4",
"importlib_resources>=1.1.0; python_version < '3.9'",
"typing_extensions; python_version < '3.9.2'",
],
)