mirror of
https://github.com/sprockets/sprockets.mixins.mediatype.git
synced 2024-11-24 19:29:50 +00:00
00b87a43cf
This allows us to remove the ImportError hack from __init__.py. It also simplifies how the package is versioned - deriving it solely from the repository tag. Both version_info and __version__ have been removed with this change. Given how these are a unofficial-standard at best, I've found it safer to always use pkg_resources to determine the version when I need to.
66 lines
2.2 KiB
Python
Executable file
66 lines
2.2 KiB
Python
Executable file
#!/usr/bin/env python
|
|
#
|
|
|
|
import os
|
|
import setuptools
|
|
|
|
|
|
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('installation.txt')
|
|
tests_require = read_requirements('testing.txt')
|
|
|
|
setuptools.setup(
|
|
name='sprockets.mixins.mediatype',
|
|
description='A mixin for reporting handling content-type/accept headers',
|
|
long_description='\n' + open('README.rst').read(),
|
|
url='https://github.com/sprockets/sprockets.mixins.media_type',
|
|
author='AWeber Communications',
|
|
author_email='api@aweber.com',
|
|
license='BSD',
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: BSD License',
|
|
'Natural Language :: English',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Programming Language :: Python :: 3.7',
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
'Topic :: Software Development :: Libraries',
|
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
|
],
|
|
packages=[
|
|
'sprockets',
|
|
'sprockets.mixins',
|
|
'sprockets.mixins.mediatype'
|
|
],
|
|
install_requires=install_requires,
|
|
tests_require=tests_require,
|
|
extras_require={
|
|
'msgpack': ['u-msgpack-python>=2.5.0,<3']
|
|
},
|
|
setup_requires=['setuptools_scm'],
|
|
use_scm_version=True,
|
|
namespace_packages=['sprockets', 'sprockets.mixins'],
|
|
test_suite='nose.collector',
|
|
python_requires='>=3.5',
|
|
zip_safe=False)
|