-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (39 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
41 lines (39 loc) · 1.3 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "easypeasy"
version = "0.0.0"
authors = [
{ name="RandomCraftr", email="contact.randomcraftr@gmail.com" },
]
description = "Old fashioned and fluid API for engineering & data science general purpose"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'pytest==7.2.0',
'numpy==1.24.0',
'scipy==1.9.3',
'plotly==5.11.0',
'scikit-learn==1.2.0',
'pandas==1.5.2', # Required by Plotly Express, not included as dependencies in plotly
'jinja2', # Templating engine for HTML report generation
'Pillow', # Image conversion to HTML source
'codenamize', # Human readable hash
# Following required by TheSequencer sources being included in this package
'numpy>=1.13',
'scikit-learn>=0.20',
'scipy>=1.0',
'networkx>=2.4',
'joblib>=0.13.2',
# End of dependencies required by including TheSequencer sources included in this package
]
[project.urls]
"Homepage" = "https://github.com/RandomCraftr/easypeasy"
"Bug Tracker" = "https://github.com/RandomCraftr/easypeasy/issues"