-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 825 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import setuptools
with open("README.md") as red:
ldest = red.read()
with open("requirements.txt") as req_file:
req = req_file.read()
setuptools.setup(
name='muskew',
version='0.1.0',
author='BreezeWhite',
author_email='miyasihta2010@tuta.io',
description='Muskew helps deskew/dewarp the curved music sheet photo with AI-aidded approach.',
long_description=ldest,
long_description_content_type='text/markdown',
license='MIT',
license_files=('LICENSE',),
url='https://github.com/BreezeWhite/muskew',
packages=setuptools.find_packages(),
package_data={
'': [
'checkpoint/metadata.pkl',
'checkpoint/model.onnx'
]
},
install_requires=req,
entry_points={'console_scripts': ['muskew = muskew.main:main']},
)