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:
parent
be9139957c
commit
c753a672f4
3 changed files with 4 additions and 8 deletions
|
@ -1 +0,0 @@
|
||||||
include slixmpp_omemo/*.py
|
|
7
setup.py
7
setup.py
|
@ -10,11 +10,7 @@
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
from setuptools import setup
|
||||||
try:
|
|
||||||
from setuptools import setup
|
|
||||||
except ImportError:
|
|
||||||
from distutils.core import setup
|
|
||||||
|
|
||||||
|
|
||||||
MODULE_FILE_PATH = os.path.join(
|
MODULE_FILE_PATH = os.path.join(
|
||||||
|
@ -63,6 +59,7 @@ setup(
|
||||||
url='https://lab.louiz.org/poezio/slixmpp-omemo',
|
url='https://lab.louiz.org/poezio/slixmpp-omemo',
|
||||||
license='GPLv3',
|
license='GPLv3',
|
||||||
platforms=['any'],
|
platforms=['any'],
|
||||||
|
packages=['slixmpp_omemo'],
|
||||||
install_requires=['slixmpp', 'omemo', 'omemo-backend-signal'],
|
install_requires=['slixmpp', 'omemo', 'omemo-backend-signal'],
|
||||||
classifiers=CLASSIFIERS,
|
classifiers=CLASSIFIERS,
|
||||||
)
|
)
|
||||||
|
|
|
@ -9,5 +9,5 @@
|
||||||
See the file LICENSE for copying permission.
|
See the file LICENSE for copying permission.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = "0.1.1"
|
__version__ = "0.1.2"
|
||||||
__version_info__ = (0, 1, 1)
|
__version_info__ = (0, 1, 2)
|
||||||
|
|
Loading…
Reference in a new issue