forked from facebook/TestSlide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (51 loc) · 2.04 KB
/
Copy pathsetup.py
File metadata and controls
53 lines (51 loc) · 2.04 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from distutils.core import setup
from io import open
setup(
name="TestSlide",
version="1.4.8",
packages=["testslide"],
maintainer="Fabio Pugliese Ornellas",
maintainer_email="fabio.ornellas@gmail.com",
url="https://github.com/facebookincubator/TestSlide",
license="MIT",
description="A test framework for Python that makes mocking and iterating over code with tests a breeze",
long_description=(
"TestSlide makes writing tests fluid and easy. Whether you prefer classic unit testing, TDD or BDD, it helps you be productive, with its easy to use well behaved mocks and its awesome test runner.\n"
"\n"
"It is designed to work well with other test frameworks, so you can use it on top of existing unittest.TestCase without rewriting everything."
"\n"
"Full documentation at https://testslide.readthedocs.io/."
),
install_requires=[
"six",
'typing ; python_version<"3"',
'mock ; python_version<"3"',
'inspect2 ; python_version<"3.6"',
],
extras_require = {
'build': [
"ipython",
"sphinx",
"sphinx-autobuild",
"sphinx_rtd_theme",
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Acceptance",
"Topic :: Software Development :: Testing :: BDD",
"Topic :: Software Development :: Testing :: Mocking",
"Topic :: Software Development :: Testing :: Unit ",
],
entry_points={"console_scripts": ["testslide=testslide.cli:main"]},
)