Skip to content

Commit e363ec3

Browse files
committed
HARMONY-1909: Remove setup.py.
1 parent 06fdd59 commit e363ec3

File tree

5 files changed

+19
-37
lines changed

5 files changed

+19
-37
lines changed

MANIFEST.in

-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ include *.md
33

44
# Include license and setup files
55
include LICENSE
6-
include setup.py
76
include pyproject.toml
87

docs/user/notebook.html

+16-18
Large diffs are not rendered by default.

examples/helper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def install_project_and_dependencies(project_root, libs=None):
1919
Change to the project root, install the project and its optional dependencies,
2020
then switch back to the original directory.
2121
22-
:param project_root: Path to the project root directory where pyproject.toml or setup.py is located.
22+
:param project_root: Path to the project root directory where pyproject.toml is located.
2323
:param libs: List of optional pip extra dependencies (e.g., ['examples', 'dev']).
2424
"""
2525
# Save the current working directory

setup.py

-15
This file was deleted.

tests/test_request.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,8 @@ def test_request_valid_shape():
208208

209209
@pytest.mark.parametrize('key, value, messages', [
210210
('shape', './tests/', ['The provided shape path "./tests/" is not a file']),
211-
('shape', './setup.py',
212-
['The provided shape path "./setup.py" has extension "py" which is not recognized. '
211+
('shape', './pyproject.toml',
212+
['The provided shape path "./pyproject.toml" has extension "toml" which is not recognized. '
213213
+ 'Valid file extensions: [json, geojson, kml, shz, zip]']),
214214
])
215215
def test_request_shape_file_error_message(key, value, messages):

0 commit comments

Comments
 (0)