sunset_simulator/setup.py

15 lines
251 B
Python
Raw Normal View History

2024-10-16 02:47:20 +00:00
from setuptools import setup
from Cython.Build import cythonize
setup(
ext_modules = cythonize("skydome.py", compiler_directives={"language_level": "3"})
)
#run following
#python setup.py build_ext --inplace
#and then
#python
#import skydome