Skip to content

Commit

Permalink
Fix some manifest issues
Browse files Browse the repository at this point in the history
  • Loading branch information
joerick committed Nov 13, 2022
1 parent 467363b commit 7368538
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
16 changes: 12 additions & 4 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
include README.md
include LICENSE
recursive-include pyinstrument *.js *.css
include pyinstrument/py.typed
prune **

graft pyinstrument
graft test
graft bin
graft html_renderer
prune html_renderer/node_modules
prune html_renderer/dist

include LICENSE README.md pyproject.toml setup.py setup.cfg noxfile.py requirements-dev.txt

global-exclude __pycache__ *.py[cod] .* dist
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import os
from pathlib import Path

from setuptools import Extension, find_packages, setup
from setuptools import Extension, find_namespace_packages, setup

PROJECT_ROOT = Path(__file__).parent
long_description = (PROJECT_ROOT / "README.md").read_text(encoding="utf8")

setup(
name="pyinstrument",
packages=find_packages(include=["pyinstrument", "pyinstrument.*"]),
packages=find_namespace_packages(include=["pyinstrument*"]),
version="4.4.0",
ext_modules=[
Extension(
Expand Down

0 comments on commit 7368538

Please sign in to comment.