-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
58 lines (51 loc) · 1.22 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
51
52
53
54
55
56
57
58
[metadata]
name = imskaper
keywords=imskaper,features extractions,pyradiomics
version = 0.0.2
license = "MIT license",
description = Radiomics features extractions and analysis tools
long_description = file: README.md
author = Ahmed Albuni,Ngoc Huynh
author_email = [email protected],[email protected]
url=https://github.com/NMBU-Data-Science/imskaper
classifiers=
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3.7
[options]
packages = find:
package_dir =
=src
include_package_data = True
install_requires =
jsonschema
skrebate
radiomics
lightgbm
seaborn
matplotlib
tqdm
six
SimpleITK
pyradiomics
numpy
scipy
pandas
joblib
scikit-learn
skfeature-chappers
nibabel
[options.packages.find]
where=src
[options.package_data]
* = *.txt, *.json
[options.entry_points]
console_scripts =
imskaper_feature_extraction = imskaper.features_extraction.feature_extraction:imskaper_feature_extract
imskaper_feature_selection = imskaper.script.feature_selection:imskaper_feature_selection
[bdist_wheel]
universal = 1
[flake8]
exclude = docs
max-line-length = 79