File tree Expand file tree Collapse file tree 3 files changed +40
-24
lines changed Expand file tree Collapse file tree 3 files changed +40
-24
lines changed Original file line number Diff line number Diff line change
1
+ # Distribution / packaging
2
+ build /
3
+ dist /
4
+ * .egg-info /
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
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/*
You can’t perform that action at this time.
0 commit comments