epour/setup.py

32 lines
639 B
Python
Raw Normal View History

#!/usr/bin/env python
from DistUtilsExtra.auto import setup
from epour.Globals import version
setup(
name='epour',
version=version,
author='Kai Huuhko',
author_email='kai.huuhko@gmail.com',
maintainer='Kai Huuhko',
maintainer_email='kai.huuhko@gmail.com',
2014-07-10 13:12:24 -07:00
description='A BitTorrent client',
long_description=(
2014-07-10 13:12:24 -07:00
'Epour is a BitTorrent client based on EFL and rb-libtorrent.'
),
#url='',
#download_url='',
license='GNU GPL',
platforms='linux',
requires=[
'libtorrent',
'efl',
2014-07-10 13:12:24 -07:00
'xdg',
'dbus',
],
provides=[
'epour',
],
)