Reformatted readme and license

Move some setup values to package

Added .gitignore
This commit is contained in:
Peter Bittner 2014-05-31 09:19:27 +02:00
parent 18df0f2c78
commit 97d27f7589
5 changed files with 64 additions and 20 deletions

14
setup.py Normal file → Executable file
View file

@ -1,12 +1,16 @@
# !/usr/bin/env python
#
from setuptools import setup, find_packages
import todo
setup(
name='django-todo',
version='1.3',
version=todo.__version__,
description='A multi-user, multi-group task management and assignment system for Django.',
author='Scot Hacker',
author_email='shacker@birdhouse.org',
url='http://github.com/shacker/django-todo',
author=todo.__author__,
author_email=todo.__email__,
url=todo.__url__,
license=todo.__license__,
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',