Skip to content

Commit

Permalink
Set the right publishing configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
pablerass committed Sep 21, 2023
1 parent e3b84e6 commit 7dec4e2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
3 changes: 3 additions & 0 deletions README.md
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.
3 changes: 2 additions & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
-r requirements_test.txt
bumpver
ipython
ipdb
ipdb
build
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpver]
current_version = "v0.1.0b0"
current_version = "v0.1.0a0"
version_pattern = "vMAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "bump version {old_version} -> {new_version}"
commit = True
Expand Down
19 changes: 8 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 7dec4e2

Please sign in to comment.