You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.0 KiB
54 lines
2.0 KiB
from setuptools import setup |
|
|
|
with open("README.md", "r", encoding="utf-8") as fh: |
|
long_description = fh.read() |
|
|
|
version = "__VERSION__" |
|
name = "__NAME__" |
|
|
|
print(f"Version: {version}") |
|
print(f"Name: {name}") |
|
|
|
setup( |
|
name=name, |
|
version=version, |
|
author='Eugenio Parodi', |
|
author_email='ceccopierangiolieugenio@googlemail.com', |
|
description='the Dumb Paint Tool is a Terminal ASCII Photoshop', |
|
long_description=long_description, |
|
long_description_content_type="text/markdown", |
|
url="https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/tools/dumbPaintTool", |
|
classifiers=[ |
|
# https://pypi.org/classifiers/ |
|
"Programming Language :: Python :: 3", |
|
"License :: OSI Approved :: MIT License", |
|
"Operating System :: OS Independent", |
|
"Development Status :: 3 - Alpha", |
|
"Environment :: Console", |
|
"Intended Audience :: Education", |
|
"Intended Audience :: Developers", |
|
"Intended Audience :: Information Technology", |
|
"Topic :: Terminals", |
|
"Topic :: Text Editors :: Text Processing", |
|
"Topic :: Multimedia :: Graphics", |
|
"Topic :: Multimedia :: Graphics :: Editors", |
|
"Topic :: Multimedia :: Graphics :: Editors :: Raster-Based", |
|
"Topic :: Multimedia :: Graphics :: Graphics Conversion", |
|
"Topic :: Software Development :: User Interfaces", |
|
"Topic :: Software Development :: Libraries", |
|
"Topic :: Software Development :: Libraries :: Python Modules", |
|
"Topic :: Software Development :: Libraries :: Application Frameworks"], |
|
include_package_data=False, |
|
packages=['dumbPaintTool','dumbPaintTool.app','dumbPaintTool.app.filters','dumbPaintTool.app.state'], |
|
package_data={'dumbPaintTool': ['tui/*']}, |
|
python_requires=">=3.9", |
|
install_requires=[ |
|
'pyTermTk>=0.41.0a1', |
|
'pyperclip', |
|
'Pillow'], |
|
entry_points={ |
|
'console_scripts': [ |
|
'dumbPaintTool = dumbPaintTool:main', |
|
], |
|
}, |
|
)
|
|
|