diff --git a/README.md b/README.md index ba55573..92b9eb5 100644 --- a/README.md +++ b/README.md @@ -1 +1,13 @@ -# plotting \ No newline at end of file +# plotting + +## Install + +```bash +pip install plotting +``` + +If you will to develop `plotting`: + +```bash +pip install -e . +``` diff --git a/setup.py b/setup.py index 5962ad9..fabd5a9 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,13 @@ -import setuptools +from setuptools import setup, find_packages -setuptools.setup( - name='plotting', - version='0.1.0', - author='Michael Rossol', - author_email='mrossol@gmail.com', - long_description=open('README.md').read(), - packages=setuptools.find_packages(), +install_requires = ["matplotlib", "seaborn"] + +setup( + name="plotting", + version="0.1.0", + author="Michael Rossol", + author_email="mrossol@gmail.com", + long_description=open("README.md").read(), + packages=find_packages(), + install_requires=install_requires, )