diff --git a/setup.py b/setup.py index 82a9da5..898a9e6 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,10 @@ -from distutils.core import setup +from setuptools import setup setup( name="mpcli", - version="1.0", - py_modules=["setup"], + version="0.1", + description="A simple web scraping tool", + packages=["scrape"], + package_data={"scrape": ["*.json"]}, + build_depends=["build"], )