We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16895ea commit 1ddcde6Copy full SHA for 1ddcde6
setup.py
@@ -3,10 +3,7 @@
3
import re
4
import sys
5
import warnings
6
-try:
7
- from setuptools import setup
8
-except:
9
- from distutils.core import setup
+from setuptools import setup, find_packages
10
11
MAJOR = 0
12
MINOR = 0
@@ -98,7 +95,6 @@ def write_version_py(filename=None):
98
95
author='Joe Hamman',
99
96
author_email='[email protected]',
100
97
url='https://github.com/jhamman/tonic',
101
- packages=['tonic'],
102
- modules=['tonic.models', 'tonic.data_tools'],
+ packages=find_packages(),
103
scripts=['scripts/vic_utils'])
104
# -------------------------------------------------------------------- #
0 commit comments