aboutsummaryrefslogblamecommitdiffstats
path: root/setup.py
blob: 95490f2fdb3dc7a0619c662eb754b1d6eac1a48f (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                                        
          
                            
         



                                
 
                 

 





                                                                       
                                          





                                              
                                                                           

                                         

                                     



                                                    
                                                
                                
                                                             

                              


                                           
# -*- coding: utf-8 -*-
from __future__ import absolute_import, print_function, unicode_literals
import sys
from setuptools import setup
import io
try:
    import unittest2 as unittest
except ImportError:
    import unittest

import gg_scraper


classifiers = [
    'Development Status :: 3 - Alpha',
    'Operating System :: OS Independent',
    'Intended Audience :: Information Technology',
    'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
    'Natural Language :: English',
    'Programming Language :: Python :: 2',
    'Programming Language :: Python :: 3',
    'Topic :: Communications :: Email',
    'Topic :: Communications :: Conferencing']


def get_long_description():
    lines = io.open('README.rst', encoding='utf8').read().splitlines(False)
    return '\n' + '\n'.join(lines) + '\n'

setup(name='gg_scraper',
      version=gg_scraper.__version__,
      description='Download a Google Group to MBOX',
      long_description=get_long_description(),
      author='Matěj Cepl',
      author_email='mcepl@cepl.eu',
      url='https://gitlab.com/mcepl/gg_scraper',
      scripts=['gg_scraper.py'],
      keywords=['email', 'Google Groups', 'scrap', 'backup'],
      license='GNU GPL',
      classifiers=classifiers,
      test_suite="test",
      requires=['beautifulsoup4', 'PyYAML']
)