-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (55 loc) · 1.89 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
import logging
import os
from setuptools import find_packages, setup
logger = logging.getLogger(__name__)
# Get the base directory
here = os.path.dirname(__file__)
if not here:
here = os.path.curdir
here = os.path.abspath(here)
try:
readme = os.path.join(here, "README.md")
long_description = open(readme, "r").read()
except IOError:
logger.warning("README file not found or unreadable.")
long_description = "See https://github.com/brunns/brunns-matchers/"
setup(
name="brunns-matchers",
zip_safe=False,
version="2.5.0",
description="Custom PyHamcrest matchers",
long_description=long_description,
long_description_content_type="text/markdown",
author="Simon Brunning",
author_email="simon@brunningonline.net",
url="https://github.com/brunns/brunns-matchers/",
packages=find_packages(where="src"),
package_dir={"": "src"},
package_data={"": ["README.md"], "brunns": ["py.typed"]},
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Testing",
],
python_requires=">=3.6",
install_requires=[
"beautifulsoup4~=4.0",
"brunns-row~=2.0",
"Deprecated~=1.2",
"furl~=2.0",
"pyhamcrest~=2.0",
"requests~=2.0",
"typing-extensions~=3.7 ; python_version<'3.8'",
],
)