-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
62 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
61
62
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Pytest Inmanta LSM
:copyright: 2020 Inmanta
:contact: [email protected]
:license: Inmanta EULA
"""
import codecs
import os
from setuptools import setup
def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
return codecs.open(file_path, encoding="utf-8").read()
setup(
name="pytest-inmanta-lsm",
version="3.11.0",
python_requires=">=3.6", # also update classifiers
author="Inmanta",
author_email="[email protected]",
license="inmanta EULA",
url="https://github.com/inmanta/pytest-inmanta-lsm",
description="Common fixtures for inmanta LSM related modules",
long_description=read("README.md"),
long_description_content_type="text/markdown",
package_dir={"": "src"},
packages=["pytest_inmanta_lsm"],
package_data={
"pytest_inmanta_lsm": [
"resources/docker-compose-http-license.yml",
"resources/docker-compose-legacy.yml",
"resources/docker-compose.yml",
"resources/my-env-file",
"resources/my-server-conf.cfg",
"resources/setup_project.py",
"py.typed",
]
},
include_package_data=True,
install_requires=["pytest-inmanta>=2.5,<4.0", "inmanta-lsm", "devtools"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Topic :: Software Development :: Testing",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
],
entry_points={"pytest11": ["inmanta-lsm = pytest_inmanta_lsm.plugin"]},
)