sprockets.mixins.mediatype/setup.py

64 lines
2.2 KiB
Python
Raw Normal View History

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-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
install_requires = read_requirements('install.txt')
setup_requires = read_requirements('setup.txt')
tests_require = read_requirements('testing.txt')
2015-06-08 20:28:30 +00:00
setuptools.setup(
name='sprockets.mixins.media_type',
2015-09-09 22:02:06 +00:00
version='1.0.1',
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=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'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,
setup_requires=setup_requires,
tests_require=tests_require,
namespace_packages=['sprockets', 'sprockets.mixins'],
test_suite='nose.collector',
2015-06-08 20:28:30 +00:00
zip_safe=False)