mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 15:04:45 +00:00
6 lines
136 B
Python
6 lines
136 B
Python
|
from distutils.core import setup
|
||
|
from Cython.Build import cythonize
|
||
|
|
||
|
setup(name='analysis',
|
||
|
ext_modules=cythonize("analysis.py"))
|