Skip to content

Commit

Permalink
Fix #85: Explicitly enumerate packages in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Mar 9, 2016
1 parent d994c20 commit fe03e6c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGES.txt
Expand Up @@ -6,7 +6,9 @@ CHANGES

* Refactor tests to use dockerized Postgres server #107

* Reduce default pool minsize to 1 # 106
* Reduce default pool minsize to 1 #106

* Explicitly enumerate packages in setup.py #85

0.9.2 (2016-01-31)
^^^^^^^^^^^^^^^^^^
Expand Down
4 changes: 2 additions & 2 deletions setup.py
@@ -1,7 +1,7 @@
import os
import re
import sys
from setuptools import setup, find_packages
from setuptools import setup


install_requires = ['psycopg2>=2.5.2']
Expand Down Expand Up @@ -59,7 +59,7 @@ def read_version():
url='http://aiopg.readthedocs.org',
download_url='https://pypi.python.org/pypi/aiopg',
license='BSD',
packages=find_packages(),
packages=['aiopg', 'aiopg.sa'],
install_requires=install_requires,
extras_require=extras_require,
include_package_data=True)

0 comments on commit fe03e6c

Please sign in to comment.