Skip to content

Commit

Permalink
Reformat setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kdheepak committed May 30, 2018
1 parent 8331519 commit bb5f9c6
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
from setuptools import setup, find_packages

install_requires = [
"matplotlib",
"seaborn",
]
install_requires = ["matplotlib", "seaborn"]

setup(
name='plotting',
version='0.1.0',
author='Michael Rossol',
author_email='[email protected]',
long_description=open('README.md').read(),
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 bb5f9c6

Please sign in to comment.