Skip to content

Commit

Permalink
Revert "setup.py: List packages explicitly"
Browse files Browse the repository at this point in the history
This reverts commit 5950e3b.

That was a bad idea... source dist worked, but binary was broken. Must
have misunderstood what it does.
  • Loading branch information
Turbo87 committed Feb 8, 2014
1 parent 34b9b2e commit dd71eaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

from setuptools import setup
from setuptools import setup, find_packages

GITHUB_URL = 'https://github.com/Turbo87/aerofiles/'

Expand Down Expand Up @@ -30,5 +30,5 @@ def read(*paths):
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: GIS',
],
packages=['aerofiles'],
packages=find_packages(exclude=['tests*']),
)

0 comments on commit dd71eaf

Please sign in to comment.