mirror of
https://github.com/vale981/releases
synced 2025-03-04 17:21:43 -05:00

Has config stuff added on top, otherwise picks up from Fabric 7084464a71ac79ae0bf940f394fa4f08f771355a
27 lines
939 B
Python
27 lines
939 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='releases',
|
|
version='0.2.0',
|
|
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',
|
|
],
|
|
)
|