forked from nickgarber/flowstate_viz
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
71 lines (56 loc) · 1.47 KB
/
pyproject.toml
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
70
71
# -*- coding: utf-8; mode: conf-toml -*-
##
##
##
[meta]
NAME="flowstate"
VERSION="0.1"
AUTHOR="Nick Garber"
AUTHOR_EMAIL = "nick.garber@gmail.com"
#MAINTAINER=
#MAINTAINER_EMAIL=
URL = "https://github.com/genesis-matrix/flowstate"
DESCRIPTION = "Visualize Highstate data produced by Saltstack"
#DOWNLOAD_URL =
# Trove classifiers - Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
CLASSIFIERS = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
]
#PLATFORMS =
LICENSE = "GNU LGPL"
REQUIRES_PYTHON = ">=3.6"
SCRIPTS=""
ENTRY_POINTS__CONSOLE_SCRIPTS= [
"flowstate_render=flowstate.client_cli:main",
]
[path]
README = "docs/ReadMe.md"
LICENSE = ".license.txt"
PACKAGE_DIR = "${meta:NAME}"
[build-system]
requires = [ "setuptools >= 35.0.2", "wheel >= 0.29.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q --doctest-modules --mypy"
testpaths = [
"tests",
"integration",
]
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py36,py37,py38
[testenv]
# arguments to 'pip install'
deps =
https://github.com/nlhepler/pydot/archive/master.zip
pytest-cov
pytest
# cli to execute tests w/i a testenv
commands = flake8,pytest --cov=flowstate,pytest"""
## EOF