mirror of
https://github.com/drewcassidy/quicktex.git
synced 2024-09-13 06:37:34 +00:00
dont install tests as a package
This commit is contained in:
parent
2b36086bf5
commit
cde6ae006e
6
.github/workflows/python-package.yml
vendored
6
.github/workflows/python-package.yml
vendored
@ -39,7 +39,7 @@ jobs:
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
python -m pip install flake8 ninja setuptools-scm Pillow click nose parameterized
|
python -m pip install flake8 nose parameterized
|
||||||
|
|
||||||
- name: Install test images
|
- name: Install test images
|
||||||
run: git clone https://git.pileof.rocks/drewcassidy/quicktex-test-images.git tests/images
|
run: git clone https://git.pileof.rocks/drewcassidy/quicktex-test-images.git tests/images
|
||||||
@ -96,7 +96,7 @@ jobs:
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
python -m pip install setuptools setuptools-scm wheel twine build
|
python -m pip install setuptools wheel twine build
|
||||||
|
|
||||||
- name: Build a binary wheel
|
- name: Build a binary wheel
|
||||||
run: python -m build --wheel --outdir dist/
|
run: python -m build --wheel --outdir dist/
|
||||||
@ -133,7 +133,7 @@ jobs:
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
python -m pip install setuptools setuptools-scm wheel twine build
|
python -m pip install setuptools wheel twine build
|
||||||
|
|
||||||
- name: Build a source tarball
|
- name: Build a source tarball
|
||||||
run: python -m build --sdist --outdir dist/
|
run: python -m build --sdist --outdir dist/
|
||||||
|
2
setup.py
2
setup.py
@ -121,7 +121,7 @@ setup(
|
|||||||
python_requires=">=3.7",
|
python_requires=">=3.7",
|
||||||
ext_modules=[CMakeExtension("_quicktex")],
|
ext_modules=[CMakeExtension("_quicktex")],
|
||||||
cmdclass={"build_ext": CMakeBuild},
|
cmdclass={"build_ext": CMakeBuild},
|
||||||
packages=find_packages('.'),
|
packages=['quicktex'],
|
||||||
package_dir={'': '.'},
|
package_dir={'': '.'},
|
||||||
package_data={'': ['py.typed'] + stubs},
|
package_data={'': ['py.typed'] + stubs},
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
|
Loading…
Reference in New Issue
Block a user