-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 919 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
33
34
35
36
37
38
[build-system]
requires = ["setuptools>=69.0"]
build-backend = "setuptools.build_meta"
# https://github.com/qiskit-community/ecosystem/issues/462
[tool.setuptools]
py-modules = []
include-package-data = false
[tool.setuptools.packages.find]
include = ['f_scheduler*']
exclude = ['f_scheduler*tests']
[project]
name = "f-scheduler"
version = "0.4.0"
description = "Simplify Function Scheduler with Python 3"
authors = [
{name = "minwook-shin", email = "minwook0106@gmail.com"},
]
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
]
[project.optional-dependencies]
dev = [
"build==1.1.1",
]
[project.urls]
"Homepage" = "https://github.com/minwook-shin/f-scheduler"
"Bug Tracker" = "https://github.com/minwook-shin/f-scheduler/issues"