File: setup.py

package info (click to toggle)
python-pyperform 1.86-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 168 kB
  • sloc: python: 729; makefile: 17
file content (18 lines) | stat: -rw-r--r-- 650 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
__author__ = 'lobocv'

from distutils.core import setup

from pyperform import __version__

setup(
    name='pyperform',
    packages=['pyperform'],  # this must be the same as the name above
    version=__version__,
    description='A fast and convenient way to performance test functions and compare results.',
    author='Calvin Lobo',
    author_email='calvinvlobo@gmail.com',
    url='https://github.com/lobocv/pyperform',
    download_url='https://github.com/lobocv/pyperform/tarball/%s' % __version__,
    keywords=['testing', 'performance', 'comparison', 'convenience', 'logging', 'timeit', 'speed', 'crash reporting'],
    classifiers=[],
)