Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

setup.py 181 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
  1. from distutils.core import setup
  2. from Cython.Build import cythonize
  3. import numpy
  4. setup(
  5. ext_modules = cythonize("rem_to_be_paid.pyx"),
  6. include_dirs=[numpy.get_include()]
  7. )
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...