-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
69 lines (62 loc) · 2.33 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
import os
import sys
from setuptools import setup, find_packages
# pylint: disable=redefined-builtin
here = os.path.abspath(os.path.dirname(__file__)) # pylint: disable=invalid-name
with open(os.path.join(here, "README.rst"), encoding="utf-8") as fid:
long_description = fid.read() # pylint: disable=invalid-name
with open(os.path.join(here, "requirements.txt"), encoding="utf-8") as fid:
install_requires = [line for line in fid.read().splitlines() if line.strip()]
setup(
name="icontract-hypothesis",
# Don't forget to update the version in __init__.py!
version="1.1.7",
description="Combine contracts and automatic testing.",
long_description=long_description,
url="https://github.com/mristin/icontract-hypothesis",
author="Marko Ristin",
author_email="[email protected]",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Framework :: Hypothesis",
],
license="License :: OSI Approved :: MIT License",
keywords="design-by-contract contracts automatic testing property-based",
packages=find_packages(exclude=["tests"]),
install_requires=install_requires,
# fmt: off
extras_require={
"dev": [
"black==22.3.0",
"mypy==0.902",
"pylint==2.3.1",
"pydocstyle>=2.1.1,<3",
"coverage>=4.5.1,<5",
"docutils>=0.14,<1",
"pygments>=2,<3",
'dpcontracts==0.6.0',
'hypothesis[dpcontracts]>=5,<6',
'tabulate==0.8.7',
'py-cpuinfo>=5,<6',
] + (['deal==4.4.0'] if sys.version_info >= (3, 8) else []),
},
# fmt: on
py_modules=["icontract_hypothesis"],
package_data={"icontract_hypothesis": ["py.typed"]},
data_files=[(".", ["LICENSE", "README.rst", "requirements.txt"])],
entry_points={
"console_scripts": [
"pyicontract-hypothesis = icontract_hypothesis.pyicontract_hypothesis.main:entry_point"
],
"hypothesis": ["_ = icontract_hypothesis"],
},
)