forked from charmed-kubernetes/pytest-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (42 loc) · 1.29 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from pathlib import Path
from setuptools import setup, find_packages
setup(
author="Cory Johns",
author_email="[email protected]",
description="Fixtures for Operators",
long_description=Path("README.md").read_text(),
long_description_content_type='text/markdown',
classifiers=[
"Framework :: Pytest",
"Programming Language :: Python",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.11",
],
license="MIT license",
include_package_data=True,
keywords=["pytest", "py.test", "operators", "yaml", "asyncio"],
name="pytest-operator",
packages=find_packages(include=["pytest_operator"]),
package_data={'pytest_operator': ['py.typed']},
url="https://github.com/charmed-kubernetes/pytest-operator",
version="0.34.0",
zip_safe=True,
install_requires=[
"ipdb",
"pytest",
"pytest-asyncio<0.23",
"pyyaml",
"juju",
"jinja2",
],
entry_points={
"pytest11": [
"pytest-operator = pytest_operator.plugin",
]
},
)