Skip to content
This repository has been archived by the owner on Feb 27, 2022. It is now read-only.

Commit

Permalink
fixed script builds
Browse files Browse the repository at this point in the history
  • Loading branch information
ofersadan85 committed Feb 10, 2021
1 parent cf5804f commit 44a2af1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -133,3 +133,4 @@ dmypy.json

# Examples
examples/~$*
examples/
2 changes: 1 addition & 1 deletion ezno_convert/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from pathlib import Path
from typing import Optional, Collection

VERSION = '0.0.5b2'
VERSION = '0.0.5b3'
DATE_FORMAT = '%Y%m%d-%H%M%S'
here = Path(sys.executable if getattr(sys, 'frozen', False) else __file__)
script_dir = here.parent if getattr(sys, 'frozen', False) else here.parent.parent
Expand Down
17 changes: 9 additions & 8 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -38,22 +38,23 @@ classifiers =
python_requires = >=3.6
install_requires =
comtypes>=1.1.8
progressbar2>=3.53.1
dataclasses;python_version<'3.7'

[options.packages.find]
exclude =
build*
docs*
tests*
*.tests
tools*
build*
docs*
tests*
*.tests
tools*
include=
ezno_convert

[options.extras_require]
gui =
wxPython>=4.1.1

[options.entry_points]
console_scripts =
eznoc = native_office_converter.cli:main
eznoc-gui = native_office_converter.gui:main [gui]
eznoc = ezno_convert.cli:main
eznoc-gui = ezno_convert.gui:main [gui]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from ezno_convert.common import VERSION

setup(version=VERSION, packages=['ezno_convert'])
setup(version=VERSION)

0 comments on commit 44a2af1

Please sign in to comment.