Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pyproject.toml to config build packages #2674

Merged
merged 1 commit into from
Feb 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ global-exclude *.c
global-exclude *.cpp
global-exclude */**/tests/*.yml
global-exclude */**/node_modules/**/*
include setup.cfg
include pyproject.toml
include mars/.git-branch
include mars/lib/mmh3_src/*
include mars/services/web/index.html
Expand Down
1 change: 0 additions & 1 deletion docs/source/development/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ development, use the following steps:
.. code-block:: bash

pip install --upgrade setuptools pip
pip install cython
git clone https://github.com/mars-project/mars.git
cd mars
pip install -e ".[dev]"
Expand Down
9 changes: 9 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[build-system]
requires = [
"setuptools",
"wheel",
"cython>=0.29",
"oldest-supported-numpy",
"scipy>=1.0.0",
]
build-backend = "setuptools.build_meta"