mirror of
https://github.com/valitydev/salt.git
synced 2024-11-06 16:45:27 +00:00
Add cython modules to setup.py
This commit is contained in:
parent
041c730f54
commit
eeba3c6964
10
setup.py
10
setup.py
@ -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',
|
||||
])
|
||||
],
|
||||
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user