Skip to content

Commit

Permalink
Merge pull request #3 from kdheepak/update-setup.py
Browse files Browse the repository at this point in the history
Update setup.py
  • Loading branch information
MRossol authored Jun 13, 2018
2 parents a181176 + bb5f9c6 commit 4ab8a84
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 9 deletions.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
# plotting
# plotting

## Install

```bash
pip install plotting
```

If you will to develop `plotting`:

```bash
pip install -e .
```
19 changes: 11 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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='[email protected]',
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="[email protected]",
long_description=open("README.md").read(),
packages=find_packages(),
install_requires=install_requires,
)

0 comments on commit 4ab8a84

Please sign in to comment.