Skip to content

Commit 7799edc

Browse files
committed
Release v.0.0.3
1 parent 8b28853 commit 7799edc

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ def package_files(directory):
1414
return paths
1515

1616

17-
APP = ['']
17+
APP = [""]
1818
APP_NAME = "Things"
1919
AUTHOR = "Alexander Willner, Michael B."
2020
AUTHOR_MAIL = "[email protected]"
2121
DESCRIPTON = "A simple Python 3 library to read your Things app data."
2222
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("")
2525
OPTIONS = {
26-
'argv_emulation': False,
26+
"argv_emulation": False,
2727
}
2828

2929
with open("README.md", "r") as fh:
@@ -44,11 +44,11 @@ def package_files(directory):
4444
"Programming Language :: Python :: 3",
4545
"License :: OSI Approved :: Apache Software License",
4646
"Operating System :: MacOS :: MacOS X",
47-
"Natural Language :: English"
47+
"Natural Language :: English",
4848
],
49-
python_requires='>=3.6',
49+
python_requires=">=3.6",
5050
version=VERSION,
5151
data_files=DATA_FILES,
52-
options={'py2app': OPTIONS},
53-
setup_requires=['py2app'],
52+
options={"py2app": OPTIONS},
53+
setup_requires=["py2app"],
5454
)

0 commit comments

Comments
 (0)