Commit e4a318ea by Gabe Mulley

ensure all packages are added to the egg

parent b22a3929
...@@ -19,3 +19,5 @@ pylint.report ...@@ -19,3 +19,5 @@ pylint.report
diff_cover.html diff_cover.html
diff_quality_pep8.html diff_quality_pep8.html
diff_quality_pylint.html diff_quality_pylint.html
dist
import os import os
from setuptools import setup from setuptools import setup
from setuptools import find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
REQUIREMENTS = [line.strip() for line in REQUIREMENTS = [line.strip() for line in
...@@ -11,7 +12,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) ...@@ -11,7 +12,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup( setup(
name='event-tracking', name='event-tracking',
version='0.1', version='0.1',
packages=['eventtracking'], packages=find_packages(),
include_package_data=True, include_package_data=True,
license='AGPLv3 License', license='AGPLv3 License',
description='A simple event tracking system.', description='A simple event tracking system.',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment