change: Changed the setup.py for a binary package

This commit is contained in:
Nicholas Novak 2024-02-28 17:26:43 -08:00
parent 1fb3c45f97
commit 13e0e63be3

View File

@ -1,7 +1,10 @@
from distutils.core import setup from setuptools import setup
setup( setup(
name="mpcli", name="mpcli",
version="1.0", version="0.1",
py_modules=["setup"], description="A simple web scraping tool",
packages=["scrape"],
package_data={"scrape": ["*.json"]},
build_depends=["build"],
) )