Skip to content

Commit

Permalink
Bump to v0.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
BreezeWhite committed Nov 16, 2024
1 parent b3fe2d6 commit 937e13d
Showing 1 changed file with 50 additions and 44 deletions.
94 changes: 50 additions & 44 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,62 +6,68 @@
ldest = red.read()


if sys.platform == 'darwin':
onnx_package = 'onnxruntime'
if sys.platform == "darwin":
onnx_package = "onnxruntime"
else:
onnx_package = 'onnxruntime-gpu'
onnx_package = "onnxruntime-gpu"


setuptools.setup(
name='oemer',
version='0.1.7',
author='BreezeWhite',
author_email='miyasihta2010@tuta.io',
description='End-to-end Optical Music Recognition (OMR) system.',
name="oemer",
version="0.1.8",
author="BreezeWhite",
author_email="miyasihta2010@tuta.io",
description="End-to-end Optical Music Recognition (OMR) system.",
long_description=ldest,
long_description_content_type='text/markdown',
license='License :: OSI Approved :: MIT License',
license_files=('LICENSE',),
url='https://github.com/BreezeWhite/oemer',
long_description_content_type="text/markdown",
license="License :: OSI Approved :: MIT License",
license_files=("LICENSE",),
url="https://github.com/BreezeWhite/oemer",
packages=setuptools.find_packages(),
package_data={
'': [
'sklearn_models/*.model',
'checkpoints/unet_big/metadata.pkl',
'checkpoints/unet_big/arch.json',
'checkpoints/seg_net/metadata.pkl',
'checkpoints/seg_net/arch.json',
]
"": [
"sklearn_models/*.model",
"checkpoints/unet_big/metadata.pkl",
"checkpoints/unet_big/arch.json",
"checkpoints/seg_net/metadata.pkl",
"checkpoints/seg_net/arch.json",
]
},
install_requires=[
onnx_package,
'opencv-python-headless>=4.5.3.56',
'matplotlib',
'pillow',
'scipy',
'scikit-learn>=1.2',
'types-Pillow',
'types-tensorflow',
'typing-extensions',
"opencv-python-headless>=4.5.3.56",
"matplotlib",
"pillow",
"scipy",
"scikit-learn>=1.2",
"types-Pillow",
"types-tensorflow",
"typing-extensions",
],
extras_require={
'tf': ['tensorflow', 'tf2onnx'],
"tf": ["tensorflow", "tf2onnx"],
},
entry_points={'console_scripts': ['oemer = oemer.ete:main']},
keywords=['OMR', 'optical-music-recognition', 'AI', 'machine-learning', 'image-processing'],
entry_points={"console_scripts": ["oemer = oemer.ete:main"]},
keywords=[
"OMR",
"optical-music-recognition",
"AI",
"machine-learning",
"image-processing",
],
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Education',
'Topic :: Multimedia :: Graphics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Image Processing',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Version Control :: Git'
]
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Education",
"Topic :: Multimedia :: Graphics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Version Control :: Git",
],
)

0 comments on commit 937e13d

Please sign in to comment.