aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: e1f16befa79eae4bb0b2087ca2199d73861de6cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python3

from setuptools import setup, find_packages
setup(
    name = 'nyanping',
    version = '0.0.3',
    py_modules = ['ping'],
    scripts = ['nyanping'],
    description = ('Improved graphical ping tool'),
    url = 'https://github.com/jaseg/nyanping',
    author = 'jaseg',
    author_email = 'github@jaseg.net',
    install_requires = ['python-mpv'],
    license = 'GPLv3',
    classifiers = [
        'Development Status :: 5 - Production/Stable',
        'Environment :: Console',
        'Intended Audience :: Manufacturing',
        'Intended Audience :: Science/Research',
        'Intended Audience :: Religion',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
        'Topic :: Utilities'
        ]
)