1from setuptools import setup
2
3setup(
4 name='saneterm',
5 version='0.0.1',
6 packages=['saneterm'],
7 install_requires=[
8 'PyGObject',
9 ],
10 entry_points={
11 'gui_scripts': [
12 'saneterm = saneterm.__main__:main'
13 ]
14 },
15)
Modern line-oriented terminal emulator without support for TUIs
git clone https://git.8pit.net/saneterm.git
1from setuptools import setup
2
3setup(
4 name='saneterm',
5 version='0.0.1',
6 packages=['saneterm'],
7 install_requires=[
8 'PyGObject',
9 ],
10 entry_points={
11 'gui_scripts': [
12 'saneterm = saneterm.__main__:main'
13 ]
14 },
15)