File: setup.py

package info (click to toggle)
pyinstaller 6.18.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 11,824 kB
  • sloc: python: 41,828; ansic: 12,123; makefile: 171; sh: 131; xml: 19
file content (9 lines) | stat: -rw-r--r-- 286 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
from setuptools import setup

setup(
    name='pyi_example_package',
    setup_requires="setuptools >= 40.0.0",
    packages=['pyi_example_package'],
    author='PyInstaller development team',
    entry_points={'pyinstaller40': ['hooks = pyi_example_package.__init__:get_hook_dirs']}
)