Add cython modules to setup.py

This commit is contained in:
Thomas S Hatch 2011-04-03 16:25:17 -06:00
parent 041c730f54
commit eeba3c6964

View File

@ -2,8 +2,12 @@
'''
The setup script for salt
'''
import os
from distutils.core import setup
from distutils.extension import Extension
from distutils.sysconfig import get_python_lib
mod_path = os.path.join(get_python_lib(), 'salt/modules/')
setup(name='salt',
version='0.7.0',
@ -31,6 +35,8 @@ setup(name='salt',
('share/man/man7',
['man/salt.7',
]),
(mod_path,
['salt/modules/cytest.pyx',
])
],
)