-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
57 lines (52 loc) · 1.62 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cosmos-odor"
version = "1.0.1"
description = "A Data-Driven Probabilistic Time Series Simulator for Chemical Plumes"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "CC0-1.0"}
authors = [
{name = "Aruna Nag", email = "[email protected]"},
]
keywords = ["odor", "simulation", "chemical plumes", "environmental monitoring", "agent-based modeling"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Physics",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"numpy>=1.20.0",
"pandas>=1.3.0",
"scipy>=1.7.0",
"numba>=0.56.0",
"h5py>=3.0.0",
]
[project.optional-dependencies]
visualization = [
"matplotlib>=3.5.0",
]
dev = [
"pytest>=6.0",
"black",
"flake8",
]
[project.urls]
Homepage = "https://github.com/arunavanag591/COSMOS"
Documentation = "https://github.com/arunavanag591/COSMOS/blob/paper/README.md"
Repository = "https://github.com/arunavanag591/COSMOS.git"
Issues = "https://github.com/arunavanag591/COSMOS/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["cosmos*"]
[tool.setuptools.package-data]
cosmos = ["data/**/*"]