@@ -14,16 +14,16 @@ def package_files(directory):
14
14
return paths
15
15
16
16
17
- APP = ['' ]
17
+ APP = ["" ]
18
18
APP_NAME = "Things"
19
19
AUTHOR = "Alexander Willner, Michael B."
20
20
21
21
DESCRIPTON = "A simple Python 3 library to read your Things app data."
22
22
URL = "https://github.com/thingsapi/things.py"
23
- VERSION = "0.0.2 "
24
- DATA_FILES = package_files ('' )
23
+ VERSION = "0.0.3 "
24
+ DATA_FILES = package_files ("" )
25
25
OPTIONS = {
26
- ' argv_emulation' : False ,
26
+ " argv_emulation" : False ,
27
27
}
28
28
29
29
with open ("README.md" , "r" ) as fh :
@@ -44,11 +44,11 @@ def package_files(directory):
44
44
"Programming Language :: Python :: 3" ,
45
45
"License :: OSI Approved :: Apache Software License" ,
46
46
"Operating System :: MacOS :: MacOS X" ,
47
- "Natural Language :: English"
47
+ "Natural Language :: English" ,
48
48
],
49
- python_requires = ' >=3.6' ,
49
+ python_requires = " >=3.6" ,
50
50
version = VERSION ,
51
51
data_files = DATA_FILES ,
52
- options = {' py2app' : OPTIONS },
53
- setup_requires = [' py2app' ],
52
+ options = {" py2app" : OPTIONS },
53
+ setup_requires = [" py2app" ],
54
54
)
0 commit comments