commonware/setup.py

27 строки
862 B
Python
Исходник Обычный вид История

2010-04-12 22:27:08 +04:00
from setuptools import setup
setup(
name='commonware',
2011-05-13 23:00:48 +04:00
version='0.2.4',
2010-04-13 21:06:45 +04:00
description='A place to keep stuff we want to share, like middleware.',
2010-04-23 07:06:44 +04:00
long_description=open('README.rst').read(),
2010-04-12 22:27:08 +04:00
author='James Socol',
author_email='james@mozilla.com',
url='http://github.com/jsocol/commonware',
license='BSD',
packages=['commonware'],
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Environment :: Web Environment :: Mozilla',
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)