X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/6dd0a5ff269cce9d64944c0cc5b8cb03a41d2124..5a52ca664aed78b1dc1825142e36dbe6c15c2c13:/setup.py diff --git a/setup.py b/setup.py index 212b4ca..3d740f8 100644 --- a/setup.py +++ b/setup.py @@ -42,11 +42,11 @@ version = __import__('philo').VERSION setup( name = 'philo', version = '.'.join([str(v) for v in version]), - url = "https://github.com/ithinksw/philo", + url = "http://philocms.org/", description = "A foundation for developing web content management systems.", - long_description = open(os.path.join(root_dir, 'README.markdown')).read(), - maintainer = "Joseph Spiros", - maintainer_email = "joseph.spiros@ithinksw.com", + long_description = open(os.path.join(root_dir, 'README')).read(), + maintainer = "iThink Software", + maintainer_email = "contact@ithinksw.com", packages = packages, data_files = data_files, @@ -66,7 +66,7 @@ setup( install_requires = [ 'django>=1.3', 'python>=2.5.4', - 'django-mptt>0.4.2', + 'django-mptt>0.4.2,==dev', ], extras_require = { 'docs': ["sphinx>=1.0"], @@ -75,6 +75,7 @@ setup( 'waldo-recaptcha': ['recaptcha-django'], 'sobol-eventlet': ['eventlet'], 'sobol-scrape': ['BeautifulSoup'], + 'penfield': ['django-taggit>=0.9'], }, dependency_links = [ 'https://github.com/django-mptt/django-mptt/tarball/master#egg=django-mptt-dev'