-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (47 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
51 lines (47 loc) · 1.45 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "simplation"
dynamic = ["version"]
description = "A powerful command-line tool for analyzing and visualizing simulation data from CSV files"
readme = "README.md"
requires-python = ">=3.10.8"
keywords = ["simulation", "data-analysis", "csv", "engineering", "visualization", "statistics"]
authors = [
{name = "M. Gueni", email = "mohamedgueni@outlook.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
dependencies = [
"colorama>=0.4.6",
"numpy>=1.22.4",
"pandas>=2.2.2",
"pyfiglet>=0.8.post1",
"rich>=14.0.0",
"matplotlib>=3.6.2",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"black>=22.0",
"flake8>=4.0",
"twine>=4.0",
]
[project.urls]
"Homepage" = "https://github.com/Gueni/simplation"
"Bug Reports" = "https://github.com/Gueni/simplation/issues"
"Source" = "https://github.com/Gueni/simplation"
[project.scripts]
simplation = "simplation.cli:main"