mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-30 03:15:34 -05:00
ec854c9308
* Move redist tools to central location * Include exe and dll in package setup
11 lines
305 B
Python
11 lines
305 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="isledecomp",
|
|
version="0.1.0",
|
|
description="Python tools for the isledecomp project",
|
|
packages=find_packages(),
|
|
tests_require=["pytest"],
|
|
include_package_data=True,
|
|
package_data={"isledecomp.lib": ["*.exe", "*.dll"]},
|
|
)
|