-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
61 lines (53 loc) · 1.8 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
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "meerschaum"
description = "Sync Time-Series Pipes with Meerschaum"
readme = "README.md"
requires-python = ">=3.8"
license = "Apache-2.0"
license-files = ["LICENSE", "NOTICE"]
authors = [
{ name = "Bennett Meares", email = "bennett.meares@gmail.com" },
]
maintainers = [
{ name = "Bennett Meares", email = "bennett.meares@gmail.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Programming Language :: SQL",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Database",
"Natural Language :: English",
]
dynamic = ["version", "dependencies", "optional-dependencies"]
[project.urls]
Documentation = "https://docs.meerschaum.io"
Changelog = "https://meerschaum.io/news/changelog"
GitHub = "https://github.com/bmeares/Meerschaum"
Homepage = "https://meerschaum.io"
Donate = "https://github.com/sponsors/bmeares"
Discord = "https://discord.gg/8U8qMUjvcc"
[project.scripts]
mrsm = "meerschaum.__main__:main"
meerschaum = "meerschaum.__main__:main"
[tool.setuptools]
zip-safe = true
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "meerschaum.config._version.__version__"}
[tool.setuptools.packages.find]
include = ["meerschaum*"]
exclude = ["docs*", "tests*"]
[tool.setuptools.package-data]
"*" = ["*.html", "*.css", "*.js", "*.png", "*.ico", "api/resources/**"]