summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: dce1af71e1af51861ac28c98e7604847bdada540 (plain) (blame)
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
52
53
54
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
#  This file is part of gns-deb-diff.
#
#  gns-deb-diff is under the Public Domain. See
#  <https://creativecommons.org/publicdomain/zero/1.0>

"""
gns-deb-diff setup.
"""

from setuptools import setup, find_packages
from codecs import open
from os import path

from gns_deb_diff._version import __version__

here = path.abspath(path.dirname(__file__))

with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
    long_description = f.read()

config = {
    'name': 'gns-deb-diff',
    'version': __version__,
    'description': 'Documents difference between gNewsSense and Debian.',
    'long_description': long_description,
    'url': 'https://git.ricketyspace.net/gns-deb-diff',
    'author': 'rsiddharth',
    'author_email': 'rsiddharth@ninthfloor.org',
    'license': 'Public Domain',
    'classifiers': [
        'Development Status :: 2 - Pre-Alpha',
        'Environment :: Console',
        'Intended Audience :: Developers',
        'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
        'Operating System :: POSIX :: Linux',
        'Programming Language :: Python :: 3.5',
        'Programming Language :: Python :: 3 :: Only',
        'Topic :: Software Development :: Documentation',
        'Topic :: Text Processing :: General',
    ],
    'keywords': 'gNewSense Debian documentation',
    'py_modules': ['gd_diff'],
    'packages': ['gns_deb_diff'],
    'include_package_data': True,
    'install_requires': ['beautifulsoup4', 'requests'],
    'entry_points': {
        'console_scripts': ['gd-diff = gd_diff:main']
    },
}

setup(**config)