Skip to content

Commit 2f8ca09

Browse files
committed
Add pyproject.toml Update manifest.in
1 parent 1ee6292 commit 2f8ca09

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

MANIFEST.in

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
include CONTRIBUTING.md
22
include COPYING.md
33
include README.md
4+
include CHANGES.txt
5+
include MANIFEST.in
6+
include pyproject.toml
7+
include pytest.ini
48

59
# Documentation
610
graft docs

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -153,3 +153,10 @@ with parity_check.hold_trait_notifications():
153153

154154
However, we **recommend** that custom cross-validators don't modify the state
155155
of the HasTraits instance.
156+
157+
### Release build:
158+
159+
```bash
160+
$ pip install pep517
161+
$ python -m pep517.build .
162+
```

pyproject.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools>=40.8.0", "wheel"]
3+
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)