Skip to content

Commit

Permalink
Try include in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilDohne committed Feb 26, 2024
1 parent cb96dae commit 88f7288
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion MANIFEST.in

This file was deleted.

6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
import subprocess
import sys
from pathlib import Path
from glob import glob

from setuptools import Extension, setup
from setuptools import Extension, find_packages, setup
from setuptools.command.build_ext import build_ext

import re
Expand Down Expand Up @@ -152,8 +153,9 @@ def build_extension(self, ext: CMakeExtension) -> None:
long_description="Includes full support for modifying nested layer hierarchies as well as all bit depths known to Photoshop",
ext_modules=[CMakeExtension("psapi")],
cmdclass={"build_ext": CMakeBuild},
packages=find_packages(),
package_data={'': ['*.pyi', '*.typed'] + glob('python/psapi/**', recursive=True)},
zip_safe=False,
package_data={"PhotoshopAPI" : ["python/psapi/py.typed"]},
install_requires= [
"numpy>=1.26"
],
Expand Down

0 comments on commit 88f7288

Please sign in to comment.