Skip to content

Commit 9990b52

Browse files
committed
updated setup.py to use find_packages(), increased version to 0.2
1 parent 4bcdbca commit 9990b52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22
import os
33

44
here = os.path.abspath(os.path.dirname(__file__))
@@ -16,7 +16,7 @@
1616
url='https://github.com/ryanjdillon/pyotelem',
1717
download_url='https://github.com/ryanjdillon/pyotelem/archive/0.1.tar.gz',
1818
license='GPL-3.0+',
19-
packages=['pyotelem'],
19+
packages=find_packages(),
2020
install_requires=[
2121
'gsw',
2222
'pandas',

0 commit comments

Comments
 (0)