From e390c9fa0ba4be0c7550dce76188a334d02948fd Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sat, 19 Dec 2015 21:57:27 +0300 Subject: [PATCH] Extend distutils configuration Add platforms, keywords, classifiers, scripts. --- setup.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/setup.py b/setup.py index d1a3919..61034c0 100755 --- a/setup.py +++ b/setup.py @@ -24,6 +24,21 @@ setup(name='m_librarian', author_email='phd@phdru.name', url='http://phdru.name/Software/Python/', license='GPL', + platforms=['any'], + keywords=['books', 'library', 'Flibusta', 'LibRusEc', 'lib.rus.ec'], + classifiers=[ + 'Development Status :: 1 - Planning', + 'Environment :: Console', + 'Environment :: Web Environment', + 'Intended Audience :: End Users/Desktop', + 'License :: OSI Approved :: GNU General Public License (GPL)', + 'Operating System :: OS Independent', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 2 :: Only', + ], packages=['m_librarian'], + scripts=[], requires=['SQLObject'], ) -- 2.39.2