Commit 1f9925fc authored by Julien Muchembled's avatar Julien Muchembled

Add classifiers to setup.py

parent bdf116a0
from setuptools import setup, find_packages from setuptools import setup, find_packages
import os import os
classifiers = """\
Framework :: ZODB
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License (GPL)
Operating System :: POSIX :: Linux
Programming Language :: Python
Topic :: Database
Topic :: Software Development :: Libraries :: Python Modules
"""
if not os.path.exists('mock.py'): if not os.path.exists('mock.py'):
import cStringIO, md5, urllib, zipfile import cStringIO, md5, urllib, zipfile
mock_py = zipfile.ZipFile(cStringIO.StringIO(urllib.urlopen( mock_py = zipfile.ZipFile(cStringIO.StringIO(urllib.urlopen(
...@@ -29,6 +39,7 @@ setup( ...@@ -29,6 +39,7 @@ setup(
author_email = 'neo-dev@erp5.org', author_email = 'neo-dev@erp5.org',
url = 'http://www.neoppod.org/', url = 'http://www.neoppod.org/',
license = 'GPL 2+', license = 'GPL 2+',
classifiers=classifiers.splitlines(),
packages = find_packages(), packages = find_packages(),
py_modules = ['mock'], py_modules = ['mock'],
entry_points = { entry_points = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment