Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "envycontrol"
dynamic = ["version"]
description = "Easy GPU switching for Nvidia Optimus laptops under Linux"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Victor Bayas", email = "victorsbayas@gmail.com" },
]
keywords = [
"gpu",
"linux",
"nvidia",
"optimus",
"prime",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
]

[project.scripts]
envycontrol = "envycontrol:main"

[project.urls]
Homepage = "http://github.com/bayasdev/envycontrol"

[tool.hatch.version]
path = "envycontrol/__init__.py"

[tool.hatch.build.targets.sdist]
include = [
"/envycontrol",
]