summaryrefslogtreecommitdiffstats
path: root/yum-presto/setup.py
blob: 504d62c4b9fd05a77e269bd91973bd995014bb58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
"""
Build script for yum-presto.
"""
from setuptools import setup, find_packages

setup (name = "yum-presto",
    version = '0.4.4',
    packages = find_packages(), 
    description = "Utilizes the work done on deltarpm to provide faster, smaller size downloads to Fedora users.",
    author = 'Jonathan Dieter',
    author_email = 'jdieter@gmail.com',
    license = 'GPLv2+',
    platforms=["Linux"],

    data_files=[('/usr/lib/yum-plugins/', ['presto.py']),
                ('/etc/yum/pluginconf.d/', ['presto.conf'])],

    classifiers=['License :: OSI Approved ::  GNU General Public License (GPL)',
                 'Operating System :: Unix',
                 'Programming Language :: Python',
                 ],
)