Use find_packages from setuptools to identify packages

This commit is contained in:
Alessio Bogon 2015-01-08 23:58:35 +01:00
parent 76a91ce358
commit fdbc8909cc
1 changed files with 2 additions and 6 deletions

View File

@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages
import os
setup(
@ -12,11 +12,7 @@ setup(
'administrators of options for commands that they use frequently, but not '
'frequently enough to remember.',
url = 'https://github.com/chrisallenlane/cheat',
packages = [
'cheat',
'cheat.cheatsheets',
'cheat.test',
],
packages = find_packages(),
package_data = {
'cheat.cheatsheets': [f for f in os.listdir('cheat/cheatsheets') if '.' not in f]
},