-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (60 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
64 lines (60 loc) · 1.89 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
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "pyrimidine"
version = "1.8"
description = "A competitive framework tailored for GA, crafted with an emphasis on OOP and Algebra-Inspired Programming."
keywords = [
"Genetic Algorithm",
"Artificial Intelligence",
"Intelligent Optimization",
"Evolutionary Algorithms",
"Stochastic Optimization",
"Iterative Algorithms",
"Algebra-insprited Programming",
"Meta Programming",
]
classifiers = [
"Environment :: MacOS X",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Artificial Life",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Development Status :: Mature"
]
license = "MIT"
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
{ name = "William Song", email = "30965609+Freakwill@users.noreply.github.com"}
]
requires-python = ">=3.9"
dependencies = [
"numpy>=2.0.0",
"scipy>=1.12.0",
"pandas>=2.1.0",
"toolz>=0.12.0",
"matplotlib>=3.9.0",
"scikit-learn>=1.4.0",
"dask",
"ezstat>=2.3",
"digit_converter>=2.3"
]
[dependency-groups]
dev = [
"pytest>=8.4.2",
]
[project.urls]
Homepage = "https://github.com/Freakwill/pyrimidine"
Repository = "https://github.com/Freakwill/pyrimidine"
Documentation = "https://pyrimidine.readthedocs.io/en/latest/index.html#"
[build-system]
requires = ["poetry-core>=1.0"]
build-backend = "poetry.core.masonry.api"