Skip to content

Commit

Permalink
Update the setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Gomaa committed Mar 30, 2009
1 parent b440ee6 commit b8b729b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions setup.py
@@ -0,0 +1,28 @@
from distutils import setup, find_packages

setup(
name='Law Code Browser',
version='0.0'
description='A browser for law codes',
author='Adam Gomaa',
author_email='adam@adam.gomaa.us',
maintainer='Adam Gomaa',
maintainer_email='adam@adam.gomaa.us',
url='http://github.com/AdamG/law-code-browser/',
packages=find_packages(),
include_package_data=True,
setup_requires=['setuptools_git'],
zip_safe=False,
entry_points={},
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Web Environment',
'Intended Audience :: Legal Industry',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Programming Language :: Python :: 2.4',
'Programming Language :: JavaScript',
],
)

0 comments on commit b8b729b

Please sign in to comment.