-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (39 loc) · 1.19 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
[build-system]
requires = [
"setuptools"
]
build-backend = "setuptools.build_meta"
[project]
name = "fs-mapping-tools"
version = "0.2.0"
description = "A set of simple utilities for track mapping, designed for Formula Student autonomous events."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8.10"
authors = [
{name = "Paulo Sanchez", email = "dev.szblzpaulo@gmail.com"}
]
maintainers = [
{name = "Paulo Sanchez", email = "dev.szblzpaulo@gmail.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed"
]
dependencies = [
"matplotlib>=3.7.0",
"numpy>=1.24.2",
"bidimensional>=1.9.0"
]
[project.urls]
"Homepage" = "https://github.com/erlete/fs-mapping-tools"
"Bug Tracker" = "https://github.com/erlete/fs-mapping-tools/issues"