-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set the right publishing configuration
- Loading branch information
Showing
4 changed files
with
14 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Carpeta | ||
|
||
A library to visualize changes in images for troubleshooting purposes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
-r requirements_test.txt | ||
bumpver | ||
ipython | ||
ipdb | ||
ipdb | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,30 +4,27 @@ | |
|
||
setup( | ||
name='carpeta', | ||
version='0.1.0b1', | ||
description="A tool to create print and play card games", | ||
version='0.1.0a0', | ||
description="A library to trace image changes in its processing", | ||
long_description=open('README.md').read(), | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Development Status :: 3 - Alpha', | ||
'Environment :: Console', | ||
'Intended Audience :: End Users/Desktop', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Topic :: Games/Entertainment :: Board Games', | ||
'Topic :: Multimedia :: Graphics :: Graphics Conversion', | ||
'Topic :: Software Development :: Libraries', | ||
'Topic :: Software Development :: Debuggers', | ||
'Typing :: Typed' | ||
], | ||
keywords='PnP card board game print', | ||
keywords='logging tracing image processing', | ||
author='Pablo Muñoz', | ||
author_email='[email protected]', | ||
url='https://github.com/pablerass/carpeta', | ||
license='LGPLv3', | ||
entry_points={ | ||
'console_scripts': [ | ||
'carpeta=carpeta.__main__:main', | ||
], | ||
}, | ||
packages=['carpeta'], | ||
install_requires=[line for line in open('requirements.txt')], | ||
python_requires='>=3.10' | ||
|