Skip to content

Commit

Permalink
Merge branch 'hotfix/1.1'
Browse files Browse the repository at this point in the history
* hotfix/1.1:
  Fix missing packages in setup file
  • Loading branch information
Paul Fariello committed Feb 22, 2017
2 parents cc0fbbd + 929559d commit ac54027
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
@@ -1,14 +1,14 @@
#!/usr/bin/env python3

from setuptools import setup
from setuptools import setup, find_packages

setup(name='Stormbot',
version='1.0',
description='XMPP bot',
author='Paul Fariello',
author_email='paul@fariello.eu',
url='https://git.paulfariello.fr/Stormbot',
py_modules=['stormbot'],
packages=find_packages(),
package_data={'stormbot': ['data/*.dic']},
scripts=['scripts/stormbot'],
install_requires=['sleekxmpp', 'dnspython', 'gtts'],
Expand Down

0 comments on commit ac54027

Please sign in to comment.