Skip to content

Commit

Permalink
add package info
Browse files Browse the repository at this point in the history
  • Loading branch information
mkzeender committed Jul 28, 2024
1 parent 69dc47f commit 581735f
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "autohotpy"
version = "0.1.0"
authors = [
{ name="Marckie Zeender", email="[email protected]" },
]
description = "The ultimate automation library for Windows. A bridge between Python and AutoHotkey"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Windows",
]

[tool.setuptools]
py-modules = ["autohotpy"]

[tool.pytest.ini_options]
pythonpath = "."

[tool.pyright]
include = []
exclude = ["**/node_modules",
"**/__pycache__",
"src/experimental",
"src/typestubs",
".venv",
".pytest_cache"
]
ignore = ["src/oldstuff"]
defineConstant = { DEBUG = true }
stubPath = "src/stubs"

reportMissingImports = true
reportMissingTypeStubs = false

pythonVersion = "3.12"
pythonPlatform = "Windows"

# executionEnvironments = [
# { root = "src/web", pythonVersion = "3.5", pythonPlatform = "Windows", extraPaths = [ "src/service_libs" ] },
# { root = "src/sdk", pythonVersion = "3.0", extraPaths = [ "src/backend" ] },
# { root = "src/tests", extraPaths = ["src/tests/e2e", "src/sdk" ]},
# { root = "src" }
# ]




[project.urls]
Homepage = "https://github.com/mkzeender/autohotpy"
Issues = "https://github.com/mkzeender/autohotpy/issues"

0 comments on commit 581735f

Please sign in to comment.