This repository was archived by the owner on Dec 9, 2022. It is now read-only.
forked from tobami/codespeed
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 1.27 KB
/
setup.py
File metadata and controls
31 lines (30 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages
setup(
name='codespeed',
version='0.11.0a0+pythonspeed',
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.6,<1.9', 'isodate>=0.4.7,<0.6'],
packages=find_packages(exclude=['ez_setup', 'sample_project', 'speed_python']),
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',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
]
)