File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -86,8 +86,8 @@ feedback: ## Give feedback
86
86
@open https://github.com/thingsapi/things.py/issues
87
87
88
88
upload : clean # # Upload the code
89
- @python3 setup.py sdist bdist_wheel
90
- @python3 -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/things*
89
+ @$( PYTHON ) setup.py sdist bdist_wheel
90
+ @$( PYTHON ) -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/things*
91
91
92
92
copy-db :
93
93
@cp ~ /Library/Group\ Containers/JLMPQHK86H.com.culturedcode.ThingsMac/Things\ Database.thingsdatabase/main.sqlite* tests/
Original file line number Diff line number Diff line change @@ -16,17 +16,16 @@ def package_files(directory):
16
16
17
17
APP = ['' ]
18
18
APP_NAME = "Things"
19
- AUTHOR = "Alexander Willner"
19
+ AUTHOR = "Alexander Willner, Michael B. "
20
20
21
21
DESCRIPTON = "A simple Python 3 library to read your Things app data."
22
- URL = "https://example.org "
22
+ URL = "https://github.com/thingsapi/things.py "
23
23
VERSION = "0.0.1"
24
24
DATA_FILES = package_files ('' )
25
25
OPTIONS = {
26
26
'argv_emulation' : False ,
27
27
}
28
28
29
-
30
29
with open ("README.md" , "r" ) as fh :
31
30
LONG_DESRIPTION = fh .read ()
32
31
@@ -41,7 +40,7 @@ def package_files(directory):
41
40
url = URL ,
42
41
packages = find_packages (),
43
42
classifiers = [
44
- "Development Status :: 4 - Beta " ,
43
+ "Development Status :: 3 - Alpha " ,
45
44
"Programming Language :: Python :: 3" ,
46
45
"License :: OSI Approved :: Apache Software License" ,
47
46
"Operating System :: MacOS :: MacOS X" ,
You can’t perform that action at this time.
0 commit comments