Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
11 lines (10 loc) · 491 Bytes

File metadata and controls

11 lines (10 loc) · 491 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
# setup.py is only used by solrbuilder to cythonize some files See
# scripts/solr_builder/build-cython.sh We might be able to remove
# it entirely if we call cython directly from that script.
from Cython.Build import cythonize
from setuptools import find_packages, setup
setup(
# Used to make solrbuilder faster
packages=find_packages(include=["openlibrary", "openlibrary.*"]),
ext_modules=cythonize("openlibrary/solr/update.py", compiler_directives={"language_level": "3"}),
)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.