mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-06 03:20:26 +00:00
16dfe05a93
* cmake: build python extension * Python: remove obsolete clear_screen_start * Debian: python3-cffi, not python-cffi * Debian: add dep on python3-setuptools * Python: build extension module from CMake #294 * Python: install python wrappers #294 * drone: disable focal for now
16 lines
575 B
Python
16 lines
575 B
Python
from setuptools import setup, find_packages
|
|
import os
|
|
|
|
def read(fname):
|
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
|
|
|
if __name__ == '__main__':
|
|
setup(name='notcurses',
|
|
version='${PROJECT_VERSION}',
|
|
package_dir={ '': '${CMAKE_CURRENT_SOURCE_DIR}/python/src/notcurses' },
|
|
packages=find_packages('${CMAKE_CURRENT_SOURCE_DIR}/python/src/notcurses'),
|
|
cffi_modules=['${CMAKE_CURRENT_SOURCE_DIR}/python/src/notcurses/build_notcurses.py:ffibuild'],
|
|
py_modules=["notcurses"],
|
|
include_dirs=['${CMAKE_CURRENT_SOURCE_DIR}/include']
|
|
)
|