-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
47 lines (43 loc) · 1.51 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
[build-system]
requires = ["maturin>=1.3,<2.0"]
build-backend = "maturin"
[project]
name = "renfe-cli"
requires-python = ">=3.8"
authors = [
{name = "Gerard Castillo Lasheras", email = "gerardcl@gmail.com"},
]
maintainers = [
{name = "Gerard Castillo Lasheras", email = "gerardcl@gmail.com"},
]
description = "Get faster Renfe Spanish Trains timetables in your terminal."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["timetables", "schedules", "trains", "renfe", "cli", "rust", "python", "pyo3", "maturin"]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Topic :: Utilities",
"Topic :: Terminals",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/gerardcl/renfe-cli"
Documentation = "https://github.com/gerardcl/renfe-cli"
Repository = "https://github.com/gerardcl/renfe-cli"
Issues = "https://github.com/gerardcl/renfe-cli/issues"
Changelog = "https://github.com/gerardcl/renfe-cli/blob/master/CHANGELOG.md"
[tool.maturin]
features = ["pyo3/extension-module"]
[project.scripts]
renfe-cli = "renfe_cli:main"