Skip to content

Commit

Permalink
Merge pull request #5 from Regner/master
Browse files Browse the repository at this point in the history
Builds should now include the entire Eos package
  • Loading branch information
regner authored Oct 6, 2016
2 parents 28adaa6 + f5769a1 commit f30de89
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion eos/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


# This should NOT be above the imports but there is a circular import to be solved first
__version__ = '0.0.0.dev7' # NOQA
__version__ = '0.0.0.dev8' # NOQA

from .const.eos import State, Restriction
from .data.cache_handler.exception import TypeFetchError
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


from pip.req import parse_requirements
from setuptools import setup
from setuptools import setup, find_packages
from eos import __version__


Expand All @@ -16,6 +16,6 @@
author='Pyfa Team',
author_email='',
url='https://github.com/pyfa-org/eos',
packages=['eos'],
packages=find_packages(exclude='tests'),
install_requires=install_requires,
)

0 comments on commit f30de89

Please sign in to comment.