-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from kdheepak/update-setup.py
Update setup.py
- Loading branch information
Showing
2 changed files
with
24 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 . | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
) |