Skip to content
This repository has been archived by the owner on Jan 31, 2018. It is now read-only.

Commit

Permalink
Tweak setup.py info
Browse files Browse the repository at this point in the history
Adds classifiers, tweaks formatting, etc
  • Loading branch information
willkg committed Aug 6, 2012
1 parent 26334f2 commit bc6ec20
Showing 1 changed file with 20 additions and 12 deletions.
32 changes: 20 additions & 12 deletions setup.py
Expand Up @@ -3,15 +3,23 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages




setup(name='fjord', setup(
version='1.0', name='fjord',
description='Django application.', version='1.0',
long_description='', description='Django application.',
author='', long_description='',
author_email='', author='Mozilla Foundation',
license='', author_email='',
url='', license='BSD',
include_package_data=True, url='https://github.com/mozilla/fjord',
classifiers = [], include_package_data=True,
packages=find_packages(exclude=['tests']), classifiers=[
install_requires=[]) 'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
packages=find_packages(exclude=['tests']),
install_requires=[],
)

0 comments on commit bc6ec20

Please sign in to comment.