2013-09-15 20:55:52 -07:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
2013-11-21 15:37:56 -08:00
|
|
|
# Version info -- read without importing
|
|
|
|
_locals = {}
|
|
|
|
with open('releases/_version.py') as fp:
|
|
|
|
exec(fp.read(), None, _locals)
|
|
|
|
version = _locals['__version__']
|
|
|
|
|
2013-09-15 20:55:52 -07:00
|
|
|
setup(
|
|
|
|
name='releases',
|
2013-11-21 15:37:56 -08:00
|
|
|
version=version,
|
2013-09-15 20:55:52 -07:00
|
|
|
description='A Sphinx extension for changelog manipulation',
|
2018-04-27 09:57:52 -07:00
|
|
|
long_description=open("README.rst").read(),
|
2013-09-15 20:55:52 -07:00
|
|
|
author='Jeff Forcier',
|
|
|
|
author_email='jeff@bitprophet.org',
|
|
|
|
url='https://github.com/bitprophet/releases',
|
|
|
|
packages=['releases'],
|
2017-05-22 10:49:49 -07:00
|
|
|
install_requires=[
|
|
|
|
'semantic_version<3.0',
|
2018-03-28 12:08:14 -07:00
|
|
|
'sphinx>=1.3,<1.7',
|
2017-05-22 10:49:49 -07:00
|
|
|
],
|
2013-09-15 20:55:52 -07:00
|
|
|
classifiers=[
|
2016-07-25 17:29:01 -07:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
2016-04-25 22:53:51 -07:00
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Operating System :: MacOS :: MacOS X',
|
|
|
|
'Operating System :: Unix',
|
|
|
|
'Operating System :: POSIX',
|
2016-07-25 17:29:01 -07:00
|
|
|
'Operating System :: Microsoft :: Windows',
|
2016-04-25 22:53:51 -07:00
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
2016-07-25 17:29:01 -07:00
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
2017-10-19 13:40:18 -07:00
|
|
|
'Programming Language :: Python :: 3.6',
|
2016-04-25 22:53:51 -07:00
|
|
|
'Topic :: Software Development',
|
2016-07-25 17:29:01 -07:00
|
|
|
'Topic :: Software Development :: Documentation',
|
|
|
|
'Topic :: Documentation',
|
|
|
|
'Topic :: Documentation :: Sphinx',
|
2013-09-15 20:55:52 -07:00
|
|
|
],
|
|
|
|
)
|