X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=d61682026e881dee896806bd2b15e0575f9c47e3;hb=991627dd1d4fcdecc04a091ec9c0c8b9e8e8b27c;hp=d1a39190a8ba8f1ae8dce0eb8ceefa954c833e81;hpb=aa21e0f8d442137060a44fb93eba15ed55bf8e74;p=m_librarian.git diff --git a/setup.py b/setup.py index d1a3919..d616820 100755 --- a/setup.py +++ b/setup.py @@ -6,6 +6,9 @@ from os.path import abspath, dirname, join try: from ez_setup import use_setuptools use_setuptools() +except ImportError: + pass +try: from setuptools import setup is_setuptools = True except ImportError: @@ -24,6 +27,22 @@ 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 :: 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', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 2 :: Only', + ], packages=['m_librarian'], + package_data={'m_librarian': ['glst/*.txt', 'glst/genres_*.glst']}, + scripts=['scripts/ml-import.py', 'scripts/ml-initdb.py'], requires=['SQLObject'], )