summaryrefslogtreecommitdiff
path: root/setup.py
blob: d1a90edbbc2b11bd5b32dff78979a39a24b2ef63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python3

from distutils.core import setup
import time

setup(
    name='Reflector',
    version=time.strftime('%Y.%m.%d.%H.%M.%S', time.gmtime(  1617446608)),
    description='''A Python 3 module and script to retrieve and filter the latest Pacman mirror list.''',
    author='Xyne',
    author_email='ac xunilhcra enyx, backwards',
    url='''http://xyne.archlinux.ca/projects/reflector''',
    py_modules=['Reflector'],
    scripts=['reflector']
)