-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (47 loc) · 1.52 KB
/
setup.py
File metadata and controls
48 lines (47 loc) · 1.52 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
from setuptools import setup, find_packages
setup(
name="spool-coder",
version="0.2.0",
description="Software zum Auslesen und Umprogrammieren von NFC Spulen für Bambulab Filament Rollen",
author="Cascalio-Studio",
author_email="[email protected]", # Ersetzen Sie dies durch Ihre E-Mail-Adresse
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.8",
install_requires=[
"pyserial>=3.5", # Für die serielle Kommunikation mit dem NFC-Gerät
"PyQt6>=6.2.0", # Für die GUI
"PyQt6-Qt6-SVG>=6.2.0", # SVG support for PyQt6
"nfcpy>=1.0.0", # Für NFC-Funktionalität
"pyusb>=1.2.0", # Für USB-Kommunikation
"pillow>=9.0.0", # Für Bildverarbeitung in der UI
"pycryptodomex>=3.15.0", # Für Kryptographie
],
extras_require={
"dev": [
"pytest",
"pytest-cov",
"black",
"flake8",
"mypy",
],
"docs": [
"sphinx",
"sphinx-rtd-theme",
],
},
entry_points={
"console_scripts": [
"spool-coder=main:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Utilities",
],
)