2015-08-07 21:11:08 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
|
|
|
|
import os
|
2015-06-08 20:28:30 +00:00
|
|
|
import setuptools
|
|
|
|
|
2015-11-03 13:10:08 +00:00
|
|
|
from sprockets.mixins import mediatype
|
|
|
|
|
2015-08-07 21:11:08 +00:00
|
|
|
|
|
|
|
def read_requirements(file_name):
|
|
|
|
requirements = []
|
|
|
|
try:
|
|
|
|
with open(os.path.join('requires', file_name)) as req_file:
|
|
|
|
for req_line in req_file:
|
|
|
|
req_line = req_line.strip()
|
|
|
|
if '#' in req_line:
|
|
|
|
req_line = req_line[0:req_line.find('#')].strip()
|
|
|
|
if req_line.startswith('-r'):
|
|
|
|
req_line = req_line[2:].strip()
|
|
|
|
requirements.extend(read_requirements(req_line))
|
|
|
|
else:
|
|
|
|
requirements.append(req_line)
|
|
|
|
except IOError:
|
|
|
|
pass
|
|
|
|
return requirements
|
|
|
|
|
|
|
|
|
2015-09-10 15:07:33 +00:00
|
|
|
install_requires = read_requirements('installation.txt')
|
2015-08-07 21:11:08 +00:00
|
|
|
tests_require = read_requirements('testing.txt')
|
|
|
|
|
2015-06-08 20:28:30 +00:00
|
|
|
setuptools.setup(
|
2015-09-09 22:18:54 +00:00
|
|
|
name='sprockets.mixins.mediatype',
|
2015-11-03 13:10:08 +00:00
|
|
|
version=mediatype.__version__,
|
2015-06-08 20:28:30 +00:00
|
|
|
description='A mixin for reporting handling content-type/accept headers',
|
2015-08-07 21:11:08 +00:00
|
|
|
long_description='\n' + open('README.rst').read(),
|
2015-06-08 20:28:30 +00:00
|
|
|
url='https://github.com/sprockets/sprockets.mixins.media_type',
|
|
|
|
author='AWeber Communications',
|
|
|
|
author_email='api@aweber.com',
|
|
|
|
license='BSD',
|
|
|
|
classifiers=[
|
2015-11-03 13:10:08 +00:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
2015-06-08 20:28:30 +00:00
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python :: 3',
|
2018-08-07 19:51:29 +00:00
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
|
|
|
'Programming Language :: Python :: 3.7',
|
2015-06-08 20:28:30 +00:00
|
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
|
|
'Topic :: Software Development :: Libraries',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
|
|
|
],
|
2015-08-07 21:11:08 +00:00
|
|
|
packages=setuptools.find_packages(),
|
|
|
|
install_requires=install_requires,
|
|
|
|
tests_require=tests_require,
|
|
|
|
namespace_packages=['sprockets', 'sprockets.mixins'],
|
|
|
|
test_suite='nose.collector',
|
2018-11-28 16:00:08 +00:00
|
|
|
python_requires='>=3.5',
|
2015-06-08 20:28:30 +00:00
|
|
|
zip_safe=False)
|