Skip to content

Commit 0daaf3c

Browse files
Merge pull request #25 from AlexanderWillner/main
slowly updating meta data
2 parents 273dee6 + 6aea47b commit 0daaf3c

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ feedback: ## Give feedback
8686
@open https://github.com/thingsapi/things.py/issues
8787

8888
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*
9191

9292
copy-db:
9393
@cp ~/Library/Group\ Containers/JLMPQHK86H.com.culturedcode.ThingsMac/Things\ Database.thingsdatabase/main.sqlite* tests/

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,16 @@ def package_files(directory):
1616

1717
APP = ['']
1818
APP_NAME = "Things"
19-
AUTHOR = "Alexander Willner"
19+
AUTHOR = "Alexander Willner, Michael B."
2020
AUTHOR_MAIL = "[email protected]"
2121
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"
2323
VERSION = "0.0.1"
2424
DATA_FILES = package_files('')
2525
OPTIONS = {
2626
'argv_emulation': False,
2727
}
2828

29-
3029
with open("README.md", "r") as fh:
3130
LONG_DESRIPTION = fh.read()
3231

@@ -41,7 +40,7 @@ def package_files(directory):
4140
url=URL,
4241
packages=find_packages(),
4342
classifiers=[
44-
"Development Status :: 4 - Beta",
43+
"Development Status :: 3 - Alpha",
4544
"Programming Language :: Python :: 3",
4645
"License :: OSI Approved :: Apache Software License",
4746
"Operating System :: MacOS :: MacOS X",

0 commit comments

Comments
 (0)