-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 872 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 872 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
38
39
40
41
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.2"]
[project]
name = "devstats"
version = "0.1rc3"
requires-python = ">=3.8"
description = "Developer tool for scientific Python libraries"
license = {file = "LICENSE"}
maintainers = [
{name = "Scientific Python", email = "devstats@discuss.scientific-python.org"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python"
]
dependencies = [
"click",
"requests",
"jupyter",
"notebook",
"numpy",
"networkx",
]
[project.scripts]
devstats = "devstats.__main__:cli"
[project.optional-dependencies]
lint = ["pre-commit == 3.4.0"]
dev = ["changelist == 0.1"]
[project.urls]
homepage = "https://github.com/scientific-python/devstats"
[tool.setuptools.packages.find]
include = ["devstats*"]
[tool.setuptools.package-data]
"*" = ["*.gql", "*.md"]