-
Notifications
You must be signed in to change notification settings - Fork 186
/
setup.py
executable file
·92 lines (69 loc) · 2.31 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
#!/usr/bin/env python
# Copyright (c) "Neo4j"
# Neo4j Sweden AB [https://neo4j.com]
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# TODO: 6.0 - the whole deprecation and double naming shebang can be removed
import pathlib
import sys
import warnings
from contextlib import contextmanager
import tomlkit
from setuptools import setup
THIS_DIR = pathlib.Path(__file__).parent
sys.path.insert(0, str(THIS_DIR / "src"))
from neo4j._meta import ( # noqa: E402 import has to happen after sys path manipulation
deprecated_package as deprecated,
package,
)
if deprecated:
warnings.warn(
f"`{package}` is deprecated, please install `neo4j` instead.",
DeprecationWarning,
stacklevel=0,
)
readme_path = THIS_DIR / "README.rst"
readme = readme_path.read_text(encoding="utf-8")
if deprecated:
readme = (
"""\
.. warning::
This package is deprecated and will stop receiving updates starting with
version 6.0.0. Please install ``neo4j`` instead (which is an alias, i.e.,
a drop-in replacement). See https://pypi.org/project/neo4j/ .
"""
+ readme
)
pyproject_path = THIS_DIR / "pyproject.toml"
def change_project_name(new_name):
with pyproject_path.open("a+", encoding="utf-8") as fd:
fd.seek(0)
pyproject = tomlkit.parse(fd.read())
old_name = pyproject["project"]["name"]
if old_name == new_name:
return None
pyproject["project"]["name"] = new_name
fd.seek(0)
fd.truncate()
tomlkit.dump(pyproject, fd)
return old_name
@contextmanager
def changed_package_name(new_name):
old_name = change_project_name(new_name)
try:
yield
finally:
if old_name is not None:
change_project_name(old_name)
with changed_package_name(package):
setup(long_description=readme)