Skip to content

Commit

Permalink
explicitly list packages
Browse files Browse the repository at this point in the history
Currently find_packages finds test/ directory as one of a project
packages.
  • Loading branch information
rutsky committed Nov 5, 2015
1 parent c7494f7 commit 22b9ff4
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
Expand Up @@ -14,7 +14,7 @@

import os
import sys
from setuptools import setup, find_packages
from setuptools import setup


def read_file(filename):
Expand Down Expand Up @@ -48,7 +48,7 @@ def read_file(filename):
read_file("README.rst"),
read_file("CHANGES.rst"),
)),
packages=find_packages(),
packages=["aiohttp_cors"],
setup_requires=[
# Setuptools fixed environment markers (":python_version < '3.5'")
# in 17.1, and pip in 6.
Expand Down

0 comments on commit 22b9ff4

Please sign in to comment.