-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 1.65 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "techcompressor"
version = "2.0.0"
description = "Multi-algorithm compression framework with TUI, encryption, archiving, and modern algorithms"
readme = "README.md"
license = {text = "MIT"}
authors = [{name = "Devaansh Pathak", email = "devaanshpathak@example.com"}]
keywords = ["compression", "lzw", "huffman", "deflate", "zstandard", "brotli", "encryption", "archiving", "tui"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Archiving :: Compression",
]
dependencies = [
"cryptography>=41.0.0",
"tqdm>=4.65.0",
"textual>=0.75.0",
"zstandard>=0.22.0",
"brotli>=1.1.0",
]
requires-python = ">=3.10"
[project.optional-dependencies]
gui = [] # Tkinter is part of standard library
windows-acls = [
"pywin32>=306; sys_platform == 'win32'",
]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
]
[project.urls]
Homepage = "https://github.com/DevaanshPathak/TechCompressor"
Repository = "https://github.com/DevaanshPathak/TechCompressor"
Issues = "https://github.com/DevaanshPathak/TechCompressor/issues"
[project.scripts]
techcompressor = "techcompressor.cli:main"
techcmp = "techcompressor.cli:main"
techcompressor-gui = "techcompressor.gui:main"
techcompressor-tui = "techcompressor.tui:main"