forked from tonyldo/ttlockio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 860 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "ttlockio"
version = "0.3.4"
description = "Python wrapper for TTLock API"
readme = "README.md"
authors = [{ name = "Antonio Campos", email = "tonyldo@gmail.com" },]
requires-python = ">=3.6"
keywords = ["ttlock", "wrapper",]
license = {text = "MIT License"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pytest>=5.4.1",
"requests>=2.23.0",
"requests-mock>=1.7.0",
"pytest-mock",
]
[project.urls]
Homepage = "https://github.com/tonyldo/ttlock.io"
[project.scripts]
create_user = "ttlockwrapper:TTLock.create_user_script_entry"
refresh_access_token = "ttlockwrapper:TTLock.refresh_token_script_entry"