mirror of
https://github.com/Ragora/TSScraper.git
synced 2026-01-21 05:04:48 +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"),
|
||
|
|
)
|