You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from setuptools import setup
|
|
|
|
setup(
|
|
name="_curses",
|
|
version="0.1",
|
|
py_modules=["_curses"],
|
|
setup_requires=["cffi>=1.0.dev0"],
|
|
cffi_modules=[
|
|
"_curses_build.py:ffi",
|
|
],
|
|
install_requires=["cffi>=1.0.dev0"], # should maybe be "cffi-backend" only?
|
|
zip_safe=False,
|
|
)
|