-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (33 loc) · 1 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["optzer"]
[project]
name = "optzer"
version = "0.2.10"
description = "This program optimizes parameters in any external programs to any target propety."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Ryo KOBAYASHI", email = "ryo.kbys@gmail.com"}
]
maintainers = [
{name = "Ryo KOBAYASHI", email = "ryo.kbys@gmail.com"}
]
dependencies = [
"numpy", "docopt", "scipy", "multiprocess",
]
# dynamic = ["version", "description"]
[project.urls]
Homepage = "https://github.com/ryokbys/optzer"
Documentation = "http://ryokbys.web.nitech.ac.jp/contents/optzer_doc/"
Repository = "https://github.com/ryokbys/optzer"
[project.scripts]
optzer = "optzer.main:main"
optzer-out2md = "optzer.out2md:main"
optzer-out2prms = "optzer.out2prms:main"
optzer-get-best = "optzer.get_best:main"
optzer-db2csv = "optzer.db2csv:main"
optzer-db2prms = "optzer.db2prms:main"