Skip to content

Commit 4aae55c

Browse files
committed
update
1 parent d2e8092 commit 4aae55c

File tree

3 files changed

+40
-24
lines changed

3 files changed

+40
-24
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Distribution / packaging
2+
build/
3+
dist/
4+
*.egg-info/

setup.cfg

Lines changed: 0 additions & 24 deletions
This file was deleted.

setup.py

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import setuptools
2+
3+
setuptools.setup(
4+
name='winocr',
5+
version='0.0.1',
6+
author='Tomofumi Inoue',
7+
author_email='funaox@gmail.com',
8+
description='Windows.Media.Ocr',
9+
long_description=open('README.md', encoding='utf-8').read(),
10+
long_description_content_type='text/markdown',
11+
url='https://github.com/GitHub30/winocr',
12+
project_urls={
13+
'Bug Tracker': 'https://github.com/GitHub30/winocr/issues',
14+
},
15+
classifiers=[
16+
'Programming Language :: Python :: 3',
17+
'License :: OSI Approved :: MIT License',
18+
'Operating System :: OS Independent',
19+
],
20+
install_requires=[
21+
'winrt'
22+
],
23+
py_modules=[
24+
'winocr'
25+
],
26+
entry_points={
27+
'console_scripts': [
28+
'winocr_serve = winocr:serve'
29+
]
30+
}
31+
)
32+
# Publish commands
33+
# https://packaging.python.org/tutorials/packaging-projects/
34+
#pip install --upgrade pip build twine
35+
#python -m build
36+
#python -m twine upload dist/*

0 commit comments

Comments
 (0)