forked from hamcrest/PyHamcrest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·69 lines (60 loc) · 2.23 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
import os
import re
from setuptools import find_packages, setup
# need to kill off link if we're in docker builds
if os.environ.get("PYTHON_BUILD_DOCKER", None) == "true":
del os.link
os.chdir(os.path.dirname(os.path.realpath(__file__)))
def read(fname):
return open(fname).read()
# On Python 3, we can't "from hamcrest import __version__" (get ImportError),
# so we extract the variable assignment and execute it ourselves.
fh = open("src/hamcrest/__init__.py")
try:
for line in fh:
if re.match("__version__.*", line):
exec(line)
finally:
if fh:
fh.close()
params = dict(
name="PyHamcrest",
version=__version__, # flake8:noqa
author="Chris Rose",
author_email="[email protected]",
description="Hamcrest framework for matcher objects",
license="New BSD",
platforms=["All"],
keywords="hamcrest matchers pyunit unit test testing unittest unittesting",
url="https://github.com/hamcrest/PyHamcrest",
download_url="http://pypi.python.org/packages/source/P/PyHamcrest/PyHamcrest-%s.tar.gz"
% __version__,
packages=find_packages("src"),
package_dir={"": "src"},
package_data={"hamcrest": ["py.typed"]},
provides=["hamcrest"],
long_description=read("README.rst"),
python_requires=">=3.5",
install_requires=[],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: Jython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
],
)
all_params = dict(params.items())
setup(**all_params)