generated from opentensor/bittensor-subnet-template
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
42 lines (35 loc) · 1 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
[build-system]
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dippy"
version = "0.1.0" # Static version number
description = "Dippy Subnet - LLM Competition"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "dippy.ai", email = "[email protected]"}
]
classifiers = [
"Development Status :: Sigma",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.urls]
Homepage = "https://github.com/impel-intelligence/dippy-bittensor-subnet"
[tool.setuptools.packages.find]
where = ["."]
include = ["scoring*", "common*", "constants*", "utilities*", "dippy_validation_api*"]
exclude = ["tests*"]
[tool.setuptools]
include-package-data = true
[tool.black]
line-length = 120
target-version = ["py38", "py39", "py310"]
[tool.isort]
profile = "black"
line_length = 120