epour/setup.py

30 lines
602 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',
description='A torrent client',
long_description=(
'Epour is a torrent client based on EFL and rb-libtorrent.'
),
#url='',
#download_url='',
license='GNU GPL',
platforms='linux',
requires=[
'libtorrent',
'efl',
],
provides=[
'epour',
],
)