-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
50 lines (46 loc) · 1.32 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
42
43
44
45
46
47
48
49
50
[bdist_wheel]
universal = true
[metadata]
name = COPAC
version = attr: copac.__init__.__version__
author = Roman Feldbauer
author_email = [email protected]
url = https://github.com/VarIr/copac
description = Correlation partition clustering
long_description = file: README.rst
long_description_content_type = text/restructured
license = GPLv3
keywords = "machine learning" "data science" "data mining"
platform = any
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3",
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering
project_urls =
Bug Tracker = https://github.com/VarIr/copac/issues
[options]
package_dir=
=copac
python_requires = >= 3.9
packages = find:
# The following plus setuptools-scm include all version-controlled files in the package.
include_package_data = True
install_requires =
numpy
scikit-learn
scipy
pytest
[options.packages.find]
where = copac
# Setup requirements also here for legacy packaging tools; pyproject.toml is the preferred place
setup_requires =
setuptools
setuptools_scm
wheel