https://github.com/wright-group/PyCMDS
Raw File
Tip revision: 40b745a2ef0d4ac73c3d3b44066b1cde48e659a2 authored by pre-commit-ci[bot] on 14 November 2023, 17:15:13 UTC
[pre-commit.ci] pre-commit autoupdate (#432)
Tip revision: 40b745a
pyproject.toml
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"

[tool.flit.metadata]
module = "yaqc_cmds"
dist-name = "yaqc-cmds"
author = "Blaise Thompson"
author-email = "blaise@untzag.com"
home-page = "https://github.com/wright-group/yaqc-cmds"
classifiers = ["License :: OSI Approved :: MIT License"]
requires-python = ">=3.7"
requires = ["appdirs",
            "attune",
            "click",
            "numexpr",
	    "pyqtgraph",
	    "pyside2",
	    "pyserial",
	    "qtpy",
	    "slackclient<2",
	    "slacker",
	    "sympy",
	    "toml",
	    "wrighttools",
	    "yaqc",
	    ]

[tool.flit.scripts]
yaqc-cmds = "yaqc_cmds.__main__:main"

[tool.black]
line-length = 99
target-version = ['py37', 'py38']
include = '\.pyi?$'
exclude = '''
/(
    \.eggs
  | \.git
  | \.hg
  | \.mypy_cache
  | \.tox
  | \.venv
  | _build
  | build
  | dist
)/
'''
back to top