Skip to content

Commit

Permalink
Merge pull request JakeColtman#39 from trivialfis/fix/setup
Browse files Browse the repository at this point in the history
Fix setup.
  • Loading branch information
JakeColtman authored Apr 21, 2019
2 parents 3aa6784 + a993dc2 commit 91b5704
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from os import path
from setuptools import setup
from setuptools import setup, find_packages

here = path.abspath(path.dirname(__file__))

Expand All @@ -10,7 +10,7 @@
url='https://github.com/JakeColtman/bartpy',
author='Jake Coltman',
author_email='[email protected]',
packages=['bartpy'],
packages=find_packages(),
install_requires=[
'joblib',
'matplotlib',
Expand All @@ -23,5 +23,3 @@
'tqdm',
]
)


0 comments on commit 91b5704

Please sign in to comment.