https://github.com/tobami/codespeed
Raw File
Tip revision: 263860bc298fd970c8466b3161de386582e4f801 authored by Miquel Torres on 17 May 2020, 09:25:47 UTC
Merge pull request #290 from pared/patch-1
Tip revision: 263860b
setup.py
from setuptools import setup, find_packages

setup(
    name='codespeed',
    version='0.13.0',
    author='Miquel Torres',
    author_email='tobami@gmail.com',
    url='https://github.com/tobami/codespeed',
    download_url="https://github.com/tobami/codespeed/tags",
    license='GNU Lesser General Public License version 2.1',
    keywords=['benchmarking', 'visualization'],
    install_requires=['django>=1.11<2.2', 'isodate>=0.4.7,<0.6', 'matplotlib>=1.4.3,<2.0'],
    packages=find_packages(exclude=['ez_setup', 'sample_project']),
    setup_requires=['setuptools-markdown'],
    long_description_markdown_filename='README.md',
    description='A web application to monitor and analyze the performance of your code',
    include_package_data=True,
    zip_safe=False,
    classifiers=[
        'Environment :: Web Environment',
        'Framework :: Django',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.4',
        'Programming Language :: Python :: 3.5',
        'Programming Language :: Python :: 3.6',
        'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
    ]
)
back to top