-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.46 KB
/
pyproject.toml
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
38
39
40
41
42
43
44
45
46
47
48
49
[project]
name = "bittensor-commit-reveal"
version = "0.1.0"
description = ""
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["substrate", "scale", "codec", "bittensor", "commit reveal"]
dependencies = []
requires-python = ">= 3.9"
authors = [
{name = "Roman Chkhaidze", email = "roman@opentensor.dev"},
]
maintainers = [
{name = "Cortex Team", email = "cortex@opentensor.dev"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",]
[project.urls]
Repository = "https://github.com/opentensor/bittensor-commit-reveal"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
include = ["src*"]
exclude = ["tests*"]
[project.optional-dependencies]
dev = [
"maturin==1.7.0"
]