2013-09-15 20:55:52 -07:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='releases',
|
2013-10-04 21:22:30 -07:00
|
|
|
version='0.2.4',
|
2013-09-15 20:55:52 -07:00
|
|
|
description='A Sphinx extension for changelog manipulation',
|
|
|
|
author='Jeff Forcier',
|
|
|
|
author_email='jeff@bitprophet.org',
|
|
|
|
url='https://github.com/bitprophet/releases',
|
|
|
|
packages=['releases'],
|
|
|
|
classifiers=[
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Operating System :: MacOS :: MacOS X',
|
|
|
|
'Operating System :: Unix',
|
|
|
|
'Operating System :: POSIX',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 2.6',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Topic :: Software Development',
|
|
|
|
'Topic :: Software Development :: Build Tools',
|
|
|
|
'Topic :: Software Development :: Libraries',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
],
|
|
|
|
)
|