-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
90 lines (80 loc) · 2.12 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| docs/build/
| node_modules/
| venve/
| .venv/
)
'''
[tool.nbqa.mutate]
isort = 1
black = 1
[tool.poetry]
name = "lekin"
readme = "README.md" # Markdown files are supported
version = "0.0.2" # is being replaced automatically
authors = ["Longxing Tan"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"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",
"License :: OSI Approved :: MIT License"]
description = "Flexible job shop scheduler in Python"
repository = "https://github.com/LongxingTan/python-lekin"
documentation = "https://python-lekin.readthedocs.io"
homepage = "https://python-lekin.readthedocs.io"
[tool.poetry.dependencies]
python = ">=3.7,<3.11"
#pandas = "^1.1.0"
matplotlib = "*"
[tool.poetry.dev-dependencies]
# checks and make tools
pre-commit = "^2.20.0"
invoke = "*"
flake8 = "*"
mypy = "*"
pylint = "*"
isort = "*"
coverage = "*"
# jupyter notebook
ipykernel = "*"
black = { version = "*", allow-prereleases = true, extras = ["jupyter"] }
# documentatation
sphinx = "*"
pydata-sphinx-theme = "*"
nbsphinx = "*"
# pandoc = "*"
recommonmark = "*"
ipywidgets = "^8.0.1"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
dirty = false
style = "semver" # semantic versioning
[build-system] # make the package pip installable
requires = ["poetry-core>=1.0.7", "poetry-dynamic-versioning>=0.13.1"]
build-backend = "poetry.core.masonry.api"