1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
from setuptools import setup setup( name='saneterm', version='0.0.1', packages=['saneterm'], install_requires=[ 'PyGObject', ], entry_points={ 'gui_scripts': [ 'saneterm = saneterm.__main__:main' ] }, )