setup.py: specify 'packages' value to properly include slixmpp_omemo; remove MANIFEST.in

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2019-02-27 09:25:32 +00:00
parent be9139957c
commit c753a672f4
Signed by: pep
GPG key ID: DEDA74AEECA9D0F2
3 changed files with 4 additions and 8 deletions

View file

@ -1 +0,0 @@
include slixmpp_omemo/*.py

View file

@ -10,11 +10,7 @@
"""
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from setuptools import setup
MODULE_FILE_PATH = os.path.join(
@ -63,6 +59,7 @@ setup(
url='https://lab.louiz.org/poezio/slixmpp-omemo',
license='GPLv3',
platforms=['any'],
packages=['slixmpp_omemo'],
install_requires=['slixmpp', 'omemo', 'omemo-backend-signal'],
classifiers=CLASSIFIERS,
)

View file

@ -9,5 +9,5 @@
See the file LICENSE for copying permission.
"""
__version__ = "0.1.1"
__version_info__ = (0, 1, 1)
__version__ = "0.1.2"
__version_info__ = (0, 1, 2)