Skip to content

Commit

Permalink
Add setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
hodgestar committed Oct 4, 2014
1 parent 56d3486 commit cc50d74
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
from setuptools import setup, find_packages

setup(
name="wafer",
version="0.1.0a",
url='http://github.com/CTPUG/wafer',
license='MIT',
description="A wafer-thin Django library for running small conferences.",
long_description=open('README.md', 'r').read(),
author='CTPUG',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
install_requires=[
'Django>=1.6',
'django-crispy-forms',
'django-nose',
'django-registration-redux',
'pillow',
'pyLibravatar',
'pydns',
'pytz',
'requests',
# markdown 2.5 drops support for Python 2.6. Django 1.7 doesn't
# support 2.6 either, so we can drop this restriction
# when we move to Django 1.7
'markdown<2.5',
'django-medusa',
# markitup 2.2 breaks on python 2 with module level imports, which we
# need to use for markdown, so avoid using that
'django-markitup<=2.1,>2.2',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7'
'Framework :: Django',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP',
],
)

0 comments on commit cc50d74

Please sign in to comment.