summaryrefslogtreecommitdiff
path: root/setup.py
blob: 27f7a3b3932177e4cf6aa4aacd44a2ac35564f16 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51

from os.path import join, dirname
from setuptools import setup


setup(
    name='parabola-repolint',
    version='0.3.0',
    maintainer='Andreas Grapnetin',
    maintainer_email='andreas@grapentin.org',
    url='https://github.com/oaken-source/parabola-repolint',
    description='a parabola package repository lint tool',
    long_description=open(join(dirname(__file__), 'README.rst')).read(),

    keywords='parabola packages maintenance',
    packages=[
        'parabola_repolint',
        'parabola_repolint.linter_checks',
    ],

    entry_points={
        'console_scripts': [
            'parabola-repolint = parabola_repolint.__main__:main',
        ],
    },

    install_requires=[
        'pyalpm',
        'pyyaml',
        'sh',
        'pyxdg',
        'python-gnupg',
        'python-telegram-bot',
        'splinter',
    ],

    license='GPLv3',
    classifiers=[
        'Development Status :: 2 - Pre-Alpha',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
        'Programming Language :: Python :: 3 :: Only',
    ],

    test_suite='tests',
    tests_require=[
        'pytest',
    ],

    setup_requires=['pytest_runner'],
)