diff options
-rw-r--r-- | README | 6 | ||||
-rw-r--r-- | setup.py | 9 |
2 files changed, 8 insertions, 7 deletions
@@ -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 @@ -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' |