439921baea
Cslots - short for compressed slots, will be an attempt to reduce AST memory consumption by only including non-default slots in objects.
9 lines
160 B
Python
9 lines
160 B
Python
from setuptools import setup, Extension
|
|
|
|
setup(
|
|
name="cslots",
|
|
version="1.0.0",
|
|
ext_modules=[
|
|
Extension("cslots", [ "cslots.pyx" ]),
|
|
])
|