-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (29 loc) · 995 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "caspailleur"
version = "0.2.1"
description = "Minimalistic python package for mining many concise data representations. Part of SmartFCA project"
readme = "README.md"
authors = [{ name = "Egor Dudyrev" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
keywords = ["python", "fca", "itemset-mining"]
dependencies = [
'numpy>=1.20', 'scikit-mine>=1', 'bitarray>=3.0.0', 'tqdm', 'deprecation',
'PyYAML'
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/EgorDudyrev/caspailleur"
[tool.setuptools]
py-modules = ["caspailleur"]
[tool.setuptools.packages]
find = {} # Scanning implicit namespaces is active by default