-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (48 loc) · 2.34 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "phitter"
version = "1.0.0"
description = "Find the best probability distribution for your dataset and simulate processes and queues"
authors = [{name = "Sebastián José Herrera Monterrosa", email = "[email protected]"}, {name = "Carlos Andrés Másmela Pinilla", email = "[email protected]"}]
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
keywords = ["scientific", "engineering", "mathematics", "artificial intelligence", "software development", "python modules"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"scipy>=1.1.0",
"plotly>=5.14.0",
"kaleido>=0.2.1",
"matplotlib>=3.3",
"pandas>=1.5.0",
"graphviz>=0.5.1",
"IPython>=0.13"
]
[project.urls]
Homepage = "https://phitter.io"
Documentation = "https://github.com/phitterio/phitter-kernel"
Repository = "https://github.com/phitterio/phitter-kernel"
[tool.setuptools]
packages = ["phitter", "phitter.continuous", "phitter.continuous.continuous_distributions", "phitter.continuous.continuous_measures", "phitter.continuous.continuous_statistical_tests", "phitter.discrete", "phitter.discrete.discrete_distributions", "phitter.discrete.discrete_measures", "phitter.discrete.discrete_statistical_tests", "phitter.simulation", "phitter.simulation.own_distribution", "phitter.simulation.process_simulation", "phitter.simulation.queueing_simulation"]