-
Notifications
You must be signed in to change notification settings - Fork 95
/
setup.py
149 lines (135 loc) · 4 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
import io
import os
import os.path
import sys
from setuptools import find_packages, setup
from setuptools.command.develop import develop
from setuptools.command.install import install
from stat import S_IXGRP, S_IXOTH, S_IXUSR
from subprocess import CalledProcessError, check_output
with io.open("VERSION", "r") as fd:
VERSION = fd.read().rstrip()
try:
gv = check_output(["gdal-config", "--version"], universal_newlines=True).strip()
except CalledProcessError:
gv = None
requires = [
"affine==2.4.0",
"attrs==23.1.0",
"babel==2.12.1",
"backports-datetime-fromisoformat",
"cachetools==5.3.1",
"cryptography==42.0.5",
"defusedxml==0.7.1",
"docstring-parser==0.15",
"geoalchemy2==0.14.1",
"httpx[http2]==0.24.1",
"humanize==4.6.0",
'importlib-metadata==4.6; python_version<"3.10"',
"lxml==4.9.3",
"msgspec==0.17.0",
"numpy",
"networkx",
"orjson==3.9.9",
"OWSLib==0.29.2",
"passlib==1.7.4",
"pillow==10.2.0",
"poeditor",
"psutil==5.9.5",
"psycopg2==2.9.9",
"pygdal" + (f"=={gv}.*," if gv else "") + ">=3",
"pyproj==3.5.0",
"pyramid==2.0.2",
"pyramid-mako==1.1.0",
"pyramid-tm==2.5",
"python-magic==0.4.27",
"python-ulid==1.1.0",
"requests==2.31.0",
"sentry-sdk==1.37.1",
"shapely==2.0.2",
"SQLAlchemy==1.4.49",
"transaction==3.1.0",
"typing-extensions",
"ua-parser==0.18.0",
"urllib3<2",
"waitress==2.1.2",
"zipstream-new==1.1.8",
"zope.sqlalchemy==3.1",
"zope.interface==6.1",
"zope.event==5.0",
]
extras_require = dict(
development=[
"black<24",
"bump2version",
"coverage",
"flake8-future-import",
"flake8",
"freezegun",
"pre-commit",
"pyramid-debugtoolbar==4.10",
"pytest-flake8",
"pytest-watch",
"pytest==7.3.*",
"ruff",
"sqlglot",
"webtest",
]
)
entry_points = {
"paste.app_factory": ["main = nextgisweb:main"],
"babel.extractors": [
"hbs = nextgisweb.i18n.hbs:extract",
],
"pytest11": [
"nextgisweb.env = nextgisweb.env.test",
"nextgisweb.auth = nextgisweb.auth.test",
"nextgisweb.core = nextgisweb.core.test",
"nextgisweb.file_upload = nextgisweb.file_upload.test",
"nextgisweb.pyramid = nextgisweb.pyramid.test",
"nextgisweb.resource = nextgisweb.resource.test",
],
"nextgisweb.packages": [
"nextgisweb = nextgisweb:pkginfo",
],
}
class DevelopCommand(develop):
def run(self):
develop.run(self)
# Builtin console_scripts entrypoint scripts are very slow because of
# checking package requirement. So we use generated wrapper scripts.
bin_dir, _ = os.path.split(sys.executable)
for name, module, func in (
("nextgisweb", "nextgisweb.script", "main"),
("nextgisweb-config", "nextgisweb.script", "config"),
("nextgisweb-i18n", "nextgisweb.i18n.script", "main"),
):
sf = os.path.join(bin_dir, name)
with open(sf, "w") as fd:
fd.write("#!{}\n".format(sys.executable))
fd.write("from {} import {} as main\n".format(module, func))
fd.write("if __name__ == '__main__': main()\n")
st = os.stat(sf)
os.chmod(sf, st.st_mode | S_IXUSR | S_IXGRP | S_IXOTH)
class InstallCommand(install):
def run(self):
raise RuntimeError("Only development mode installation (pip install -e ...) is supported!")
setup(
name="nextgisweb",
version=VERSION,
description="NextGIS Web main package",
author="NextGIS",
author_email="[email protected]",
url="https://nextgis.com/nextgis-web",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
python_requires=">=3.8,<4",
install_requires=requires,
extras_require=extras_require,
entry_points=entry_points,
cmdclass=dict(
develop=DevelopCommand,
install=InstallCommand,
),
)