mirror of
https://github.com/sprockets/sprockets.mixins.mediatype.git
synced 2024-11-22 03:00:25 +00:00
59 lines
2 KiB
Python
Executable file
59 lines
2 KiB
Python
Executable file
#!/usr/bin/env python
|
|
#
|
|
import pathlib
|
|
import setuptools
|
|
|
|
|
|
REPO_DIR = pathlib.Path(__name__).parent
|
|
|
|
|
|
def read_requirements(name):
|
|
requirements = []
|
|
for req_line in REPO_DIR.joinpath(name).read_text().split('\n'):
|
|
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)
|
|
return requirements
|
|
|
|
|
|
setuptools.setup(
|
|
name='sprockets.mixins.mediatype',
|
|
description='A mixin for reporting handling content-type/accept headers',
|
|
long_description=REPO_DIR.joinpath('README.rst').read_text(),
|
|
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.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=read_requirements('requires/installation.txt'),
|
|
tests_require=read_requirements('requires/testing.txt'),
|
|
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.7',
|
|
zip_safe=False)
|