5 lines
163 B
Python
5 lines
163 B
Python
from distutils.core import setup
|
|
from Cython.Build import cythonize
|
|
|
|
setup(name='appointment tool',
|
|
ext_modules=cythonize('./src/workers/commandor_page.py')) |