From: Oleg Broytman Date: Sun, 15 May 2016 16:38:41 +0000 (+0300) Subject: Fix trove classifiers: set platform to POSIX only X-Git-Tag: 0.0.6~10 X-Git-Url: https://git.phdru.name/?p=m_librarian.git;a=commitdiff_plain;h=964363c38b1d7f155bbdca0062397743db8dce3e Fix trove classifiers: set platform to POSIX only The programs currently work only on Unix. Also add natural languages. --- diff --git a/setup.py b/setup.py index 290f2e5..a946250 100755 --- a/setup.py +++ b/setup.py @@ -31,15 +31,16 @@ setup(name='m_librarian', author_email='phd@phdru.name', url='http://phdru.name/Software/Python/m_librarian/', license='GPL', - platforms=['any'], + platforms=['POSIX'], keywords=['books', 'library', 'Flibusta', 'LibRusEc', 'lib.rus.ec'], classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Environment :: Console', - 'Environment :: Web Environment', 'Intended Audience :: End Users/Desktop', 'License :: OSI Approved :: GNU General Public License (GPL)', - 'Operating System :: OS Independent', + 'Natural Language :: English', + 'Natural Language :: Russian', + 'Operating System :: POSIX', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2 :: Only',