File: setup.py

package info (click to toggle)
python-dingus 0.3.4-1
  • links: PTS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 156 kB
  • ctags: 92
  • sloc: python: 301; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 809 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup

setup(name='dingus',
      version='0.3.4',
      description='A record-then-assert mocking library',
      long_description=file('README.txt').read(),
      author='Gary Bernhardt',
      author_email='gary.bernhardt@gmail.com',
      py_modules=['dingus'],
      license='MIT',
      url='https://github.com/garybernhardt/dingus',
      keywords='testing test mocking mock double stub fake record assert',
      classifiers=["Development Status :: 4 - Beta",
                   "Intended Audience :: Developers",
                   "License :: OSI Approved :: MIT License",
                   "Operating System :: OS Independent",
                   "Programming Language :: Python",
                   "Topic :: Software Development :: Testing",
                   ],
     )