-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b22fc26
commit 44fd4ae
Showing
2 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,6 @@ | |
__version__ = '1.0.0' | ||
__maintainer__ = 'Martin Porcheron' | ||
__email__ = '[email protected]' | ||
__status__ = 'Development' | ||
__status__ = 'Production' | ||
|
||
nottreal.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,13 +16,13 @@ | |
author='Martin Porcheron', | ||
author_email='[email protected]', | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3 :: Only'], | ||
keywords='voice user interfaces vuis wizard of oz woz', | ||
package_dir={'': 'nottreal'}, | ||
packages=find_packages(where='src'), | ||
packages=find_packages(where='nottreal'), | ||
python_requires='>=3.5, <4', | ||
install_requires=[ | ||
'numpy', | ||
|
@@ -31,11 +31,11 @@ | |
'PySide2'], | ||
package_data={ | ||
'sample': [ | ||
'.cfg_dist/categories.tsv', | ||
'.cfg_dist/log.tsv', | ||
'.cfg_dist/loading.tsv', | ||
'.cfg_dist/messages.tsv', | ||
'.cfg_dist/settings.cfg'] | ||
'cfg.dist/categories.tsv', | ||
'cfg.dist/log.tsv', | ||
'cfg.dist/loading.tsv', | ||
'cfg.dist/messages.tsv', | ||
'cfg.dist/settings.cfg'] | ||
}, | ||
entry_points={ | ||
'console_scripts': [ | ||
|