Skip to content

Commit

Permalink
Merge pull request #101 from klauer/bld_pyprojecttoml
Browse files Browse the repository at this point in the history
BLD: start of pyproject.toml to add build requirements
  • Loading branch information
klauer committed Oct 1, 2021
2 parents 409287e + d5bd883 commit d7660ac
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ env:
- CONDA_REQUIREMENTS="dev-requirements.txt"
- CONDA_EXTRAS=""
- CONDA_ENV_NAME="testenv"
- BUILD_REQUIREMENTS="epicscorelibs cython"

addons:
apt:
Expand All @@ -45,8 +44,6 @@ jobs:
python: 3.8
install:
- python -m pip install --upgrade pip
# Build requirements, for now:
- python -m pip install ${BUILD_REQUIREMENTS}
- python -m pip install .
- python -m pip install --requirement dev-requirements.txt
script:
Expand Down
3 changes: 2 additions & 1 deletion MANIFEST.in
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
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[build-system]
requires = [
"cython",
"epicscorelibs",
"setuptools",
"setuptools_dso",
"wheel",
]

0 comments on commit d7660ac

Please sign in to comment.