-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (47 loc) · 1.68 KB
/
setup.py
File metadata and controls
51 lines (47 loc) · 1.68 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="simplation",
version="3.0.3",
author="M. Gueni",
author_email="mohamedgueni@outlook.com",
description="A powerful command-line tool for analyzing and visualizing simulation data from CSV files",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Gueni/simplation",
packages=find_packages(),
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",
],
python_requires=">=3.10.8",
install_requires=[
"colorama>=0.4.6",
"numpy>=1.22.4",
"pandas>=2.2.2",
"pyfiglet>=0.8.post1",
"rich>=14.0.0",
"matplotlib>=3.6.2",
],
entry_points={
"console_scripts": [
"simplation=simplation.cli:main",
],
},
keywords="simulation, data-analysis, csv, engineering, visualization, statistics",
project_urls={
"Bug Reports": "https://github.com/Gueni/simplation/issues",
"Source": "https://github.com/Gueni/simplation",
"Documentation": "https://github.com/Gueni/simplation#readme",
},
)