about summary refs log tree commit diff
path: root/setup.py
blob: 8c66052788fc872afc5501e75ce339224a779da3 (plain) (blame)
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'
        ]
    },
)