-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (51 loc) · 1.9 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
50
51
52
53
54
55
56
57
[project]
name = "LibrarianFileManager"
version = "0.0.1"
authors = [
{ name="Samuel Alipour-fard", email="[email protected]" },
]
description = "A librarian for managing your files: General purpose file management tools for initializing, keeping track of, and interacting with file structures e.g. for cataloging data, plotting of figures, etc.)."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"dill >= 0.3.0",
"pathlib >= 1.0.0",
"PyYAML >= 6.0",
"uuid >= 1.30",
"datetime >= 5.0",
"pytimedinput >= 2.0.0",
"matplotlib >= 3.0.0",
"tk >= 0.1.0",
"ttkthemes >= 3.2.2"
]
[project.urls]
"Homepage" = "https://github.com/samcaf/LibrarianFileManager"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src",
"src/librarian/reporters/resources",
"src/librarian/reporters/resources/beamer_template",
"src/librarian/reporters/resources/beamer_template/includes",
"src/librarian/reporters/resources/beamer_template/figures",
"src/librarian/reporters/resources/tex_template",
"src/librarian/reporters/resources/tex_template/includes",
"src/librarian/reporters/resources/tex_template/figures"
]
[tool.setuptools.package-data]
"librarian.reporters.resources" = ["*"]
"librarian.reporters.resources.beamer_template" = ["*"]
"librarian.reporters.resources.beamer_template.includes" = ["*"]
"librarian.reporters.resources.beamer_template.figures" = ["*"]
"librarian.reporters.resources.tex_template" = ["*"]
"librarian.reporters.resources.tex_template.includes" = ["*"]
"librarian.reporters.resources.tex_template.figures" = ["*"]