mirror of
https://github.com/Ragora/TSScraper.git
synced 2026-01-19 20:24:57 +00:00
7 lines
142 B
Python
7 lines
142 B
Python
from distutils.core import setup
|
|
from Cython.Build import cythonize
|
|
|
|
setup(
|
|
name = 'Script Scraper',
|
|
ext_modules = cythonize("main.py"),
|
|
) |