Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion ClipCascade_Desktop/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ class Main:
def __init__(self):
Application().run()

def main():
Main()

if __name__ == "__main__":
Main()
main()
40 changes: 40 additions & 0 deletions ClipCascade_Desktop/src/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "clipcascade"
version = "3.1.0"
description = "ClipCascade is a lightweight utility that automatically syncs the clipboard across devices, no key press required."
authors = [{name = "Sathvik Rao", email = "[email protected]"}]
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]

dynamic = ["dependencies"]

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

[tool.setuptools]
packages = ["cli", "clipboard", "core", "gui", "interfaces", "p2p", "stomp_ws", "utils"]
py-modules = ["main"]

[tool.setuptools.dynamic]
dependencies = {file = ["requirements_linux.txt"]}

[project.urls]
Homepage = "https://clipcascade.sathvik.dev/"
Repository = "https://github.com/Sathvik-Rao/ClipCascade"
Issues = "https://github.com/Sathvik-Rao/ClipCascade/issues"