@@ -15,16 +15,16 @@ def package_files(directory):
1515 return paths
1616
1717
18- APP = [' things-cli' ]
18+ APP = [" things-cli" ]
1919APP_NAME = "Things CLI"
2020AUTHOR = "Alexander Willner"
21212222DESCRIPTON = "A simple Python 3 CLI to read your Things app data."
2323URL = "https://github.com/thingsapi/things-cli"
2424VERSION = "0.0.6"
25- DATA_FILES = package_files ('' )
25+ DATA_FILES = package_files ("" )
2626OPTIONS = {
27- ' argv_emulation' : False ,
27+ " argv_emulation" : False ,
2828}
2929
3030
@@ -46,17 +46,17 @@ def package_files(directory):
4646 "Programming Language :: Python :: 3" ,
4747 "License :: OSI Approved :: Apache Software License" ,
4848 "Operating System :: MacOS :: MacOS X" ,
49- "Natural Language :: English"
49+ "Natural Language :: English" ,
5050 ],
51- python_requires = ' >=3.6' ,
51+ python_requires = " >=3.6" ,
5252 version = VERSION ,
5353 data_files = DATA_FILES ,
54- options = {' py2app' : OPTIONS },
55- setup_requires = [' py2app' ],
54+ options = {" py2app" : OPTIONS },
55+ setup_requires = [" py2app" ],
5656 entry_points = {
57- ' console_scripts' : [
58- ' things-cli = things_cli.cli:main' ,
57+ " console_scripts" : [
58+ " things-cli = things_cli.cli:main" ,
5959 ]
6060 },
61- install_requires = [' things.py' , ' argcomplete' ]
61+ install_requires = [" things.py" , " argcomplete" ],
6262)
0 commit comments