-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 1.13 KB
/
setup.py
File metadata and controls
31 lines (30 loc) · 1.13 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = 'sinon',
version = '0.1.1',
author = 'Kir Chou',
author_email = 'note351@hotmail.com',
packages = ['sinon', 'sinon.lib', 'sinon.lib.util'],
url = 'https://github.com/note35/sinon',
license='LICENSE.txt',
description = 'Standalone and test framework agnostic Python test spies, stubs and mocks (pronounced "sigh-non"). ',
long_description=open('README.rst').read(),
download_url = 'https://github.com/note35/sinon/archive/master.zip',
keywords = ['unittest', 'spy', 'stub', 'mock', 'unittest2', 'pytest', 'sinon'],
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Natural Language :: English",
],
)