Skip to content

Commit f19b913

Browse files
committed
Fix some packaging issue
1 parent 9b78bea commit f19b913

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

ioc/extra/event/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# vim: set fileencoding=utf-8 :

setup.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# coding: utf-8
33

4-
from setuptools import setup
4+
from setuptools import setup, find_packages
55

66
setup(
77
name="ioc",
@@ -10,7 +10,9 @@
1010
author="Thomas Rabaix",
1111
author_email="[email protected]",
1212
url="https://github.com/rande/python-simple-ioc",
13-
py_modules=["ioc"],
14-
packages = ['ioc'],
13+
include_package_data = True,
14+
# py_modules=["ioc"],
15+
packages = find_packages(),
1516
install_requires=["pyyaml"],
17+
platforms='any',
1618
)

0 commit comments

Comments
 (0)