Closed Michael-F-Bryan closed 2 years ago
The packages we currently generate can be installed as file dependencies easily enough, but there are some problems when installing them as a tarball.
This fixes #59 by putting all generated files inside a package/ directory.
package/
We also update MANIFEST.in so it includes the py.typed file, allowing MyPy to check our packages when installed as a tarball.
MANIFEST.in
py.typed
🙂 The run time for "Continuous Integration" has improved slightly by 3s (2.43%) 🙂
The current run time is 2mins 27s while master took 2mins 31s.
master
The packages we currently generate can be installed as file dependencies easily enough, but there are some problems when installing them as a tarball.
This fixes #59 by putting all generated files inside a
package/
directory.We also update
MANIFEST.in
so it includes thepy.typed
file, allowing MyPy to check our packages when installed as a tarball.