-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 876 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 876 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
33
34
35
36
37
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "magic-admin"
version = "2.2.1"
description = "Magic Python Library"
readme = "README.md"
authors = [
{name = "Magic", email = "support@magic.link"}
]
keywords = ["magic", "python", "sdk"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
]
requires-python = ">=3.11"
dependencies = [
"requests==2.32.5",
"web3==7.14.0",
"websockets==15.0.1",
]
[project.urls]
Website = "https://magic.link"
[tool.setuptools]
packages = ["magic_admin", "magic_admin.resources", "magic_admin.utils"]
[tool.setuptools.package-data]
magic_admin = ["*.txt", "*.md"]