forked from neo4j/neo4j-python-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
91 lines (71 loc) · 2.38 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
#!/usr/bin/env python
# Copyright (c) "Neo4j"
# Neo4j Sweden AB [https://neo4j.com]
#
# This file is part of Neo4j.
#
# 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 os
import pathlib
import sys
import warnings
from contextlib import contextmanager
import tomlkit
from setuptools import setup
sys.path.insert(0, str(pathlib.Path(__file__).parent / "src"))
from neo4j._meta import (
deprecated_package as deprecated,
package,
version,
)
if deprecated:
warnings.warn(
f"`{package}` is deprecated, please install `neo4j` instead.",
DeprecationWarning
)
readme_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
"README.rst"))
with open(readme_path, mode="r", encoding="utf-8") as fr:
readme = fr.read()
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
@contextmanager
def changed_package_name(new_name):
with open("pyproject.toml", "a+") as fd:
fd.seek(0)
pyproject = tomlkit.parse(fd.read())
old_name = pyproject["project"]["name"]
pyproject["project"]["name"] = new_name
fd.seek(0)
fd.truncate()
tomlkit.dump(pyproject, fd)
yield
with open("pyproject.toml", "a+") as fd:
fd.seek(0)
pyproject = tomlkit.parse(fd.read())
pyproject["project"]["name"] = old_name
fd.seek(0)
fd.truncate()
tomlkit.dump(pyproject, fd)
with changed_package_name(package):
setup(
# until `[tool.setuptools.dynamic]` in pyproject.toml is out of beta
version=version,
long_description=readme,
)