18 lines
358 B
Python
18 lines
358 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name="modern-calculator",
|
||
|
version="1.0.0",
|
||
|
description="A modern calculator built with PyQt6",
|
||
|
author="Your Name",
|
||
|
packages=[""],
|
||
|
install_requires=[
|
||
|
"PyQt6>=6.0.0",
|
||
|
],
|
||
|
entry_points={
|
||
|
"console_scripts": [
|
||
|
"modern-calculator=calculator:main",
|
||
|
],
|
||
|
},
|
||
|
)
|