Skip to content

Commit

Permalink
updated setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ghickman committed Apr 19, 2011
1 parent 248aca4 commit b22275d
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions setup.py
@@ -0,0 +1,41 @@
import os
from setuptools import setup, find_packages

def fread(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

version = '0.1'

setup(
name='django-password',
version=version,
description="A Django application to store communal passwords.",
long_description=fread("README")+"\n\n"+fread('Changelog')+"\n\n"+fread('TODO'),
classifiers=[
"Framework :: Django",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Topic :: System :: Software Distribution",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='django password',
author='George Hickman',
author_email='george@ghickman.co.uk',
maintainer='George Hickman',
maintainer_email='george@ghickman.co.uk',
url='http://github.com/ghickman/django-password',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'django',
'south'
],
)

0 comments on commit b22275d

Please sign in to comment.