notcurses/python/setup.py

34 lines
1.1 KiB
Python
Raw Normal View History

from setuptools import setup
2020-01-05 13:08:22 +00:00
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="notcurses",
2020-06-19 19:25:41 +00:00
version="1.5.2",
packages=['notcurses'],
2020-01-05 13:08:22 +00:00
package_dir={'': 'src'},
author="Nick Black",
author_email="nickblack@linux.com",
2020-01-07 18:43:57 +00:00
description="Blingful TUI construction library (python bindings)",
2020-01-05 13:08:22 +00:00
keywords="ncurses curses tui console graphics",
license='Apache License, Version 2.0',
url='https://github.com/dankamongmen/notcurses',
zip_safe=True,
platforms=["any"],
long_description=read('README.md'),
long_description_content_type="text/markdown",
install_requires=["cffi>=1.0.0"],
setup_requires=["cffi>=1.0.0"],
2020-01-07 18:43:57 +00:00
cffi_modules=["src/notcurses/build_notcurses.py:ffibuild"],
2020-01-05 13:08:22 +00:00
# see https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers=[
2020-01-28 04:12:54 +00:00
'Development Status :: 4 - Beta',
2020-01-05 13:08:22 +00:00
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python',
],
)