aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2014-01-03 16:53:03 +0100
committerMatěj Cepl <mcepl@redhat.com>2014-01-03 17:05:10 +0100
commite67efc76fd37ae449cbb507fd0ef0e264e11fc36 (patch)
tree0d28eb1de979f54f4fa5ee2e31e23a908ffbc70d
parent1fee9ca55f623b5f9bbe6c425d97696c018addeb (diff)
downloadgg_scraper-e67efc76fd37ae449cbb507fd0ef0e264e11fc36.tar.gz
Fix setup.py
-rw-r--r--.gitignore3
-rw-r--r--MANIFEST.in2
-rwxr-xr-xgg_scrapper.py2
-rw-r--r--setup.py4
4 files changed, 9 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index b30333f..fb36334 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,6 @@
*.pyc
*.cnf
*.mbx
+MANIFEST
+dist/
+build/
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..618fe15
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1,2 @@
+include README.rst
+include test/*
diff --git a/gg_scrapper.py b/gg_scrapper.py
index c464565..c11d69f 100755
--- a/gg_scrapper.py
+++ b/gg_scrapper.py
@@ -39,7 +39,7 @@ MANGLED_ADDR_RE = re.compile(
r'([a-zA-Z0-9_.+-]+\.\.\.@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+)',
re.IGNORECASE)
-__version__ = '0.1'
+__version__ = '0.3'
class Page(object):
diff --git a/setup.py b/setup.py
index b4d8a71..a29fd4e 100644
--- a/setup.py
+++ b/setup.py
@@ -38,13 +38,15 @@ def get_long_description():
lines = open('README.rst').read().splitlines(False)
return '\n' + '\n'.join(lines) + '\n'
-setup(name='rope',
+setup(name='gg_scrapper',
version=gg_scrapper.__version__,
description='Download a Google Group to MBOX',
long_description=get_long_description(),
author='Matěj Cepl',
author_email='mcepl@cepl.eu',
url='http://luther.ceplovi.cz/git/gg_scrapper.git',
+ scripts=['gg_scrapper.py'],
+ keywords=['email', 'Google Groups', 'scrap', 'backup'],
license='GNU GPL',
classifiers=classifiers,
cmdclass={