Skip to content

Commit 7dd4d9d

Browse files
committed
setup: remove data_files installation from project setup
1 parent e02d3bd commit 7dd4d9d

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

pyproject.toml

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
[build-system]
2-
requires = [
3-
# sync with setup.py until we discard non-pep-517/518
4-
"setuptools-scm>=3.3.3",
5-
"setuptools>=41.2.0",
6-
]
72
build-backend = "setuptools.build_meta"
3+
requires = ["setuptools", "setuptools-scm", "wheel"]

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ def include_documentation(local_dir, install_dir):
2323

2424
if __name__ == '__main__':
2525
setuptools.setup(
26-
data_files=include_documentation('doc/build/htmlhelp', 'help/orange3-single_cell'),
26+
# data_files=include_documentation('doc/build/htmlhelp', 'help/orange3-single_cell'),
2727
use_scm_version=True,
2828
setup_requires=[
29-
'setuptools-scm>=3.3.3',
30-
'setuptools>=41.2.0'
29+
'setuptools-scm',
30+
'setuptools',
3131
],
3232
install_requires=[
3333
'Orange3>=3.23.0',

0 commit comments

Comments
 (0)