-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
41 lines (39 loc) · 1.17 KB
/
setup.cfg
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
[metadata]
name = subgroups
version = attr: subgroups.__version__
description = subgroups is a python library which contains a collection of subgroup discovery algorithms and other data analysis utilities.
long_description = file: README.md
long_description_content_type = text/markdown
keywords = python, data-science, machine-learning, data-analysis, subgroups, subgroup-discovery
license = BSD-4-Clause
license_files = LICENSE
platforms = any
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
License :: OSI Approved :: BSD License
Operating System :: OS Independent
author = Antonio López Martínez-Carrasco
author_email = antoniolopezmc1995@gmail.com
maintainer = Antonio López Martínez-Carrasco
maintainer_email = antoniolopezmc1995@gmail.com
url = https://github.com/antoniolopezmc/subgroups
[options]
python_requires = >=3.9.0
zip_safe = False
include_package_data = True
packages = find:
install_requires =
pandas>=2.0.3
bitarray>=2.7.6
statsmodels>=0.14.0
[options.packages.find]
where = src
include =
subgroups
subgroups.*
exclude =
build*
dist*
docs*