-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.67 KB
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
50
51
52
53
54
55
[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "SpringRank"
version = "0.0.10"
description = "SpringRank: A physical model for efficient ranking in networks"
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
authors = [
{name = "Caterina De Bacco"},
{name = "Daniel Larremore", email = "daniel.larremore@colorado.edu"},
{name = "Cris Moore"},
]
maintainers = [
{name = "Daniel Larremore", email = "daniel.larremore@colorado.edu"},
]
requires-python = ">=3.6"
keywords = ["rankings", "SpringRank"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
]
# read dependencies from requirements.txt
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://github.com/LarremoreLab/SpringRank"
Repository = "https://github.com/LarremoreLab/SpringRank"
Issues = "https://github.com/LarremoreLab/SpringRank/issues"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
where = ["."]
include = ["*"]
exclude = ["tests*", "docs*"]
[tool.setuptools.package-data]
"*" = ["*.txt", "*.md", "*.rst", "*.json", "*.yaml", "*.yml"]