2019-02-06 14:57:51 +00:00
|
|
|
#!/usr/bin/env python3
|
2019-02-06 14:56:34 +00:00
|
|
|
#
|
|
|
|
|
2018-12-14 00:06:14 +00:00
|
|
|
import pathlib
|
2016-01-18 20:32:49 +00:00
|
|
|
|
|
|
|
import setuptools
|
|
|
|
|
|
|
|
from sprockets.mixins import metrics
|
|
|
|
|
|
|
|
|
2018-12-14 00:06:14 +00:00
|
|
|
REPO = pathlib.Path(__file__).parent
|
2016-01-18 20:32:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name='sprockets.mixins.metrics',
|
|
|
|
version=metrics.__version__,
|
|
|
|
description='Record performance metrics about your application',
|
|
|
|
long_description='\n'+open('README.rst').read(),
|
|
|
|
author='AWeber Communications',
|
|
|
|
author_email='api@aweber.com',
|
|
|
|
license='BSD',
|
|
|
|
url='https://github.com/sprockets/sprockets.mixins.metrics',
|
2018-12-14 00:06:14 +00:00
|
|
|
install_requires=REPO.joinpath('requires/installation.txt').read_text(),
|
|
|
|
tests_require=REPO.joinpath('requires/testing.txt').read_text(),
|
2016-01-19 12:50:03 +00:00
|
|
|
packages=setuptools.find_packages(exclude=['examples.']),
|
2016-01-18 20:32:49 +00:00
|
|
|
namespace_packages=['sprockets', 'sprockets.mixins'],
|
|
|
|
classifiers=[
|
2021-07-21 17:14:51 +00:00
|
|
|
'Development Status :: 7 - Inactive',
|
2016-01-18 20:32:49 +00:00
|
|
|
'Environment :: No Input/Output (Daemon)',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Operating System :: OS Independent',
|
2018-07-20 03:55:27 +00:00
|
|
|
'Programming Language :: Python :: 3.7',
|
2019-09-02 21:04:16 +00:00
|
|
|
'Programming Language :: Python :: 3.8',
|
2016-01-18 20:32:49 +00:00
|
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
|
|
'Topic :: Software Development :: Libraries',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules'],
|
|
|
|
test_suite='nose.collector',
|
2018-12-13 22:24:08 +00:00
|
|
|
python_requires='>=3.7',
|
2016-01-18 20:32:49 +00:00
|
|
|
zip_safe=True,
|
|
|
|
)
|