-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BLD: use pyproject.toml to add build requirements
- Loading branch information
Showing
2 changed files
with
10 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
include LICENSE.md | ||
include README.rst | ||
include dev-requirements.txt | ||
include pyproject.toml | ||
include requirements.txt | ||
include versioneer.py | ||
|
||
recursive-include whatrecord/_whatrecord *.pyx | ||
recursive-include src/_whatrecord *.pyx | ||
recursive-include whatrecord/grammar *.lark | ||
recursive-include whatrecord/tests *.db *.cmd *.dbd *.proto *.pvlist *.acf t1-*.txt | ||
recursive-include whatrecord/tests *.substitutions *.substitutions.expanded |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[build-system] | ||
requires = [ | ||
"cython", | ||
"epicscorelibs", | ||
"setuptools", | ||
"setuptools_dso", | ||
"wheel", | ||
] |