forked from facebook/TestSlide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (42 loc) · 1.69 KB
/
setup.py
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
# 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 setuptools import setup
version = open("testslide/version").read().rstrip()
readme = open("README.md", encoding="utf8").read()
requirements = open("requirements.txt", encoding="utf8").readlines()
requirements_build = open("requirements-dev.txt", encoding="utf8").readlines()
setup(
name="TestSlide",
version=version,
packages=["testslide"],
maintainer="Fabio Pugliese Ornellas",
maintainer_email="fabio.ornellas@gmail.com",
url="https://github.com/facebook/TestSlide",
license="MIT",
description="A test framework for Python that makes mocking and iterating over code with tests a breeze",
long_description=readme,
long_description_content_type="text/markdown",
setup_requires=["setuptools>=38.6.0"],
install_requires=requirements,
package_data={
'testslide': ['py.typed'],
},
extras_require={
"build": requirements_build
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"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"]},
)