epour/setup.py

28 lines
571 B
Python
Raw Normal View History

2013-03-27 17:23:24 -07:00
#!/usr/bin/env python
from DistUtilsExtra.auto import setup
setup(name='epour',
2013-07-26 08:07:16 -07:00
version='0.4',
2013-03-27 17:23:24 -07:00
author='Kai Huuhko',
author_email='kai.huuhko@gmail.com',
maintainer='Kai Huuhko',
maintainer_email='kai.huuhko@gmail.com',
description='Simple torrent client',
long_description='Epour is a simple torrent client using EFL and libtorrent.',
#url='',
#download_url='',
license='GNU GPL',
platforms='linux',
requires=[
'libtorrent',
'evas',
'ecore',
'elementary',
'e_dbus',
],
provides=[
'epour',
],
)