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
|
# -*- 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']
)
|