X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/ed6b9876b7abff0b2dc6266d6f769c319f358a9c..0cbc3b76a93d6c69e649378a10b75aa57cc7165d:/setup.py diff --git a/setup.py b/setup.py index 3c18b16..8f13ea5 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -from distutils.core import setup +from setuptools import setup import os @@ -40,8 +40,43 @@ for dirpath, dirnames, filenames in os.walk(philo_dir): version = __import__('philo').VERSION setup( - name = 'Philo', - version = '%s.%s' % (version[0], version[1]), + name = 'philo', + version = '.'.join([str(v) for v in version]), + url = "http://philocms.org/", + description = "A foundation for developing web content management systems.", + long_description = open(os.path.join(root_dir, 'README')).read(), + maintainer = "iThink Software", + maintainer_email = "contact@ithinksw.com", packages = packages, data_files = data_files, + + classifiers = [ + 'Environment :: Web Environment', + 'Framework :: Django', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: ISC License (ISCL)', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', + 'Topic :: Software Development :: Libraries :: Application Frameworks', + ], + platforms = ['OS Independent'], + license = 'ISC License (ISCL)', + + install_requires = [ + 'django>=1.3', + 'python>=2.5.4', + 'django-mptt>0.4.2,==dev', + ], + extras_require = { + 'docs': ["sphinx>=1.0"], + 'grappelli': ['django-grappelli>=2.3'], + 'migrations': ['south>=0.7.2'], + 'waldo-recaptcha': ['recaptcha-django'], + 'sobol-eventlet': ['eventlet'], + 'sobol-scrape': ['BeautifulSoup'], + }, + dependency_links = [ + 'https://github.com/django-mptt/django-mptt/tarball/master#egg=django-mptt-dev' + ] ) \ No newline at end of file