-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
94 lines (85 loc) · 2.73 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[project]
name = "tessdb-cmdline"
dynamic = ["version"]
description = "A package to collect measurements published by TESS instruments into a SQlite database"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Rafael González", email = "[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
'Programming Language :: SQL',
'Development Status :: 4 - Beta',
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Atmospheric Science",
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Natural Language :: English',
'Natural Language :: Spanish',
]
dependencies = [
'jinja2',
'tabulate',
'geopy',
'timezonefinder',
'requests',
'validators',
'python-decouple',
'python-dateutil',
'tabulate',
'pytz',
'lica@git+https://github.com/guaix-ucm/lica#egg=main',
]
[project.optional-dependencies]
test = [
"pytest>=6",
]
[project.urls]
Homepage = "https://github.com/STARS4ALL/tessdb-cmdline"
Repository = "https://github.com/STARS4ALL/tessdb-cmdline.git"
[project.scripts]
mongo-db = "tessdb.tools.mongodb:main"
tess-db = "tessdb.tools.tessdb:main"
zp-tess = "tessdb.tools.zptess:main"
cross-db = "tessdb.tools.crossdb:main"
tess-ida = "tessdb.reports.ida:main"
fix-zp = "tessdb.tools.adhoc:main"
[build-system]
requires = ["setuptools >= 45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
# pyproject.toml
# Autimatically generates a _version-py file from with Git information
# This file shold be placed in .gitignore
[tool.setuptools_scm]
write_to = "src/tessdb/_version.py"
[tool.setuptools.packages.find]
# scanning for namespace packages is true by default in pyproject.toml, so
# you do NOT need to include the following line.
namespaces = true
where = ["src"]
[tool.setuptools]
script-files = [
"scripts/tools/tessdb-pause",
"scripts/tools/tessdb-resume",
"scripts/tools/auto-apply-sql",
"scripts/tools/fast-apply-sql",
"scripts/tools/create-sql-indexes",
"scripts/tools/delete-sql-indexes",
"scripts/tools/manual-repaired-location-fixes",
"scripts/reports/tess_readings_unassigned.sh",
"scripts/ida/tess_ida_bulk_dump",
"scripts/ida/tess_ida_bulk_dump_all",
"scripts/ida/tess_ida_bulk_dump_selective",
"scripts/ida/tessdb_remote_backup",
"scripts/ida/webdav_ida_rclone",
]
[tool.setuptools.package-data]
"tessdb.templates" = ["*.j2"]