forked from GreenScheduler/cats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (26 loc) · 966 Bytes
/
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
[build-system]
requires = ['setuptools>=40.8.0']
build-backend = 'setuptools.build_meta'
[tool.setuptools]
packages = ["cats"]
package-data.cats = ["config.yml"]
[project]
name = "climate-aware-task-scheduler"
version = "0.1.0"
description = "Climate aware task scheduler"
authors = []
license = { file = "LICENSE" }
requires-python = ">=3.9"
readme = "README.md"
classifiers = ["License :: OSI Approved :: MIT License"]
dependencies = ["requests-cache>=1.0", "PyYAML>=6.0"]
[project.optional-dependencies]
test = ["pytest", "numpy>=1.5.0", "pytest-subprocess==1.5.0", "pytest-cov"]
types = ["mypy", "types-PyYAML", "types-redis", "types-requests", "types-ujson"]
[project.urls]
Home = "https://github.com/GreenScheduler/cats"
[project.scripts]
cats = "cats:main"
[tool.ruff.lint]
# Pyflakes (`F`), subset of the pycodestyle (`E`) and unsorted imports (`I001`)
select = ["E4", "E7", "E9", "F", "I001"]