File: setup.py

package info (click to toggle)
fakesleep 0.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 108 kB
  • sloc: makefile: 146; python: 91
file content (19 lines) | stat: -rw-r--r-- 644 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
from distutils.core import setup

setup(name='fakesleep',
      version="0.1",
      description='fake time.sleep() for use in tests',
      author='Pete Fein',
      author_email='pete@wearpants.org',
      url='http://github.com/wearpants/fakesleep',
      py_modules=['fakesleep'],
      license = "BSD",
      classifiers = [
      "Programming Language :: Python :: 2",
      "Programming Language :: Python :: 3",
      "Development Status :: 5 - Production/Stable",
      "Intended Audience :: Developers",
      "License :: OSI Approved :: BSD License",],
      long_description=open('README.rst').read(),
      )