aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2015-01-03 08:59:56 +0100
committerMatěj Cepl <mcepl@cepl.eu>2015-01-03 09:14:36 +0100
commite0f8a7e01bf034f8dd5f26f7dbd0e32be4360cba (patch)
treecc10a76862b67271fb74a42dfbdcfe3ddbdea256
parentbc74057f5b075e4eab2aa6698821d33e1d97c7d5 (diff)
downloadpygn-e0f8a7e01bf034f8dd5f26f7dbd0e32be4360cba.tar.gz
Renaming because of conflicting (dead) PIP package.
Also, fix package metadata.
-rw-r--r--README6
-rw-r--r--setup.py9
2 files changed, 8 insertions, 7 deletions
diff --git a/README b/README
index dc189b4..8d690fe 100644
--- a/README
+++ b/README
@@ -4,8 +4,8 @@ Copyright:
Copyright (C) 2000-2001,2012 Cosimo Alfarano <kalfa@debian.org>
Copyright (C) 2014 Matěj Cepl <mcepl@cepl.eu>
-A copy of the GNU General Public License, version 2, can be found in
-/usr/share/common-licenses/GPL-3
+A copy of the GNU General Public License, version 3, can be found in
+http://www.gnu.org/licenses/gpl-3.0.txt
It is intended to be a full SMTP/NNTP rfc compliant gateway
with whitelist manager.
@@ -34,4 +34,4 @@ pygm2n mail to news gateway frontend
pygn2m news to mail gateway frontend
whitelist.py whitelist managing python class module
wlp C backend for whitelist parser (wlp) directory
-examples documentation and exaples directory \ No newline at end of file
+examples documentation and exaples directory
diff --git a/setup.py b/setup.py
index 716c101..063697d 100644
--- a/setup.py
+++ b/setup.py
@@ -37,12 +37,13 @@ wlp_module = Extension('wlp',
'wlp/lex.yy.c'])
-setup(name='pyg',
+setup(name='pygn',
version=VERSION, # the current Debian version is 0.9.8
author="Cosimo Alfarano, Matej Cepl",
author_email="kalfa@debian.org, mcepl@cepl.eu",
description=DESC,
long_description=read('README'),
+ url='https://gitlab.com/mcepl/pyg',
py_modules=['mail2news', 'news2mail', 'setup', 'whitelist'],
ext_modules=[wlp_module],
test_suite="test",
@@ -53,14 +54,14 @@ setup(name='pyg',
# TODO package actually requires lex and yacc port, but not sure
# how to say it here
requires=[],
- license="GPLv2",
+ license="GPLv3",
keywords=["nntp", "email", "gateway"],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2.7',
- 'Natural Language :: English',
- 'Topic :: Office/Business :: Financial :: Accounting',
+ 'Intended Audience :: System Administrators',
'Topic :: Utilities',
+ 'Topic :: Communications :: Usenet News',
'Environment :: Console',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU Affero General Public License v3'