-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 856 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 856 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
[project]
name = "timelock"
version = "0.0.2-dev"
authors = [
{ name="Ideal Labs", email="hello@idealabs.network" },
]
description = "This provides python bindings for usage of timelock encryption"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"timelock_wasm_wrapper>=0.0.1"
]
[tool.setuptools]
packages = ["timelock"]
package-dir = { ""="src" }
[tool.setuptools.package-data]
timelock = ["*.so", "*.pyd"] # Add the shared library files
[project.urls]
Homepage = "https://github.com/ideal-lab5/timelock"
Issues = "https://github.com/ideal-lab5/timelock/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"