-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from djhoese/ci-wheels
Update build process to include wheels
- Loading branch information
Showing
4 changed files
with
40 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
"""Setuptools-based packaging and installation configuration.""" | ||
|
||
from setuptools import setup | ||
from setuptools import find_packages, setup | ||
|
||
import versioneer | ||
|
||
|
@@ -45,7 +45,7 @@ | |
long_description=long_description, | ||
author="Esben S. Nielsen", | ||
author_email="[email protected]", | ||
packages=["pycoast", "pycoast.tests"], | ||
packages=find_packages(), | ||
include_package_data=True, | ||
install_requires=requires, | ||
extras_require=extras_require, | ||
|