-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (42 loc) · 1.44 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
# Based on setup.py from pytest-tornado
import os
import io
from setuptools import setup, find_packages
cwd = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(cwd, "README.md"), encoding="utf-8") as fd:
long_description = fd.read()
setup(
name="pytest-inmanta",
version="3.2.0",
description=(
"A py.test plugin providing fixtures to simplify inmanta modules testing."
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/inmanta/pytest-inmanta",
author="Inmanta NV",
author_email="code@inmanta.com",
license="Apache License, Version 2.0",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Software Development :: Testing",
],
package_data={
"": ["module/*"],
},
keywords=("pytest py.test inmanta testing unit tests plugin"),
include_package_data=True,
packages=find_packages(),
zip_safe=False,
install_requires=["pytest", "inmanta-core", "pydantic", "pyyaml"],
entry_points={
"pytest11": ["inmanta = pytest_inmanta.plugin"],
},
)