We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b78bea commit f19b913Copy full SHA for f19b913
ioc/extra/event/__init__.py
@@ -0,0 +1 @@
1
+# vim: set fileencoding=utf-8 :
setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
2
# coding: utf-8
3
4
-from setuptools import setup
+from setuptools import setup, find_packages
5
6
setup(
7
name="ioc",
@@ -10,7 +10,9 @@
10
author="Thomas Rabaix",
11
author_email="[email protected]",
12
url="https://github.com/rande/python-simple-ioc",
13
- py_modules=["ioc"],
14
- packages = ['ioc'],
+ include_package_data = True,
+ # py_modules=["ioc"],
15
+ packages = find_packages(),
16
install_requires=["pyyaml"],
17
+ platforms='any',
18
)
0 commit comments