]> git.phdru.name Git - m_librarian.git/commitdiff
Extend distutils configuration
authorOleg Broytman <phd@phdru.name>
Sat, 19 Dec 2015 18:57:27 +0000 (21:57 +0300)
committerOleg Broytman <phd@phdru.name>
Sat, 19 Dec 2015 18:57:27 +0000 (21:57 +0300)
Add platforms, keywords, classifiers, scripts.

setup.py

index d1a39190a8ba8f1ae8dce0eb8ceefa954c833e81..61034c0b59d0bf7efa14fb2617dea621dbf28060 100755 (executable)
--- 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'],
       )