forked from adansons/base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (51 loc) · 1.44 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
[tool.poetry]
name = "adansons-base"
version = "0.1.3"
description = "Adansons Base"
readme = "README.md"
authors = ["Adansons Developers <engineer@adansons.co.jp>"]
homepage = ""
repository = "https://github.com/adansons/base"
license = "MIT"
packages = [
{ include = "base"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Database",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux"
]
[tool.poetry.scripts]
base = 'base.cli:main'
[tool.poetry.dependencies]
python = "^3.8,<3.11"
click = ">=8.0.0"
requests = ">=1.0.0"
numpy = ">=1.18.5"
scikit-learn = ">=0.23.0"
PyYAML = "^6.0"
"ruamel.yaml" = "^0.17.21"
colorama = "^0.4.4"
pandas = "^1.4.3"
[tool.poetry.dev-dependencies]
black = "^21.12b0"
pytest = "^6.2.5"
mypy = "^0.931"
boto3 = "^1.21.13"
jupyter = "^1.0.0"
jupyterlab = "^3.0.9"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"