File tree Expand file tree Collapse file tree 3 files changed +58
-1
lines changed Expand file tree Collapse file tree 3 files changed +58
-1
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ celerybeat-schedule
103
103
.env
104
104
.venv
105
105
env /
106
- venv /
106
+ venv * /
107
107
ENV /
108
108
env.bak /
109
109
venv.bak /
148
148
* .lock
149
149
* .pt
150
150
* .zip
151
+ * .tar.gz
151
152
* .ckpt
152
153
* .tfevents. *
153
154
Original file line number Diff line number Diff line change
1
+ [build-system ]
2
+ requires = [
3
+ " setuptools>=42" ,
4
+ " wheel"
5
+ ]
6
+ build-backend = " setuptools.build_meta"
Original file line number Diff line number Diff line change
1
+ [metadata]
2
+ name = libmultilabel
3
+ version = 0.0.1
4
+ author = LibMultiLabel Team
5
+ license = MIT License
6
+ license_file = LICENSE
7
+ description = A library for multi-label text classification
8
+ long_description = See API documentation here: https://www.csie.ntu.edu.tw/~cjlin/libmultilabel
9
+ url = https://github.com/ASUS-AICS/LibMultiLabel
10
+ project_urls =
11
+ Bug Tracker = https://github.com/ASUS-AICS/LibMultiLabel/issues
12
+ Documentation = https://www.csie.ntu.edu.tw/~cjlin/libmultilabel
13
+ Source Code = https://github.com/ASUS-AICS/LibMultiLabel/
14
+ classifiers =
15
+ Environment :: GPU :: NVIDIA CUDA :: 10.2
16
+ Intended Audience :: Developers
17
+ Intended Audience :: Education
18
+ Intended Audience :: Science/Research
19
+ License :: OSI Approved :: MIT License
20
+ Operating System :: OS Independent
21
+ Programming Language :: Python :: 3
22
+ Programming Language :: Python :: 3.7
23
+ Programming Language :: Python :: 3.8
24
+
25
+ [options]
26
+ packages = find:
27
+ install_requires =
28
+ nltk
29
+ pandas
30
+ PyYAML
31
+ scikit-learn
32
+ torch ==1.8.0
33
+ torchmetrics ==0.3.2
34
+ torchtext ==0.9.0
35
+ pytorch-lightning ==1.3.5
36
+ tqdm
37
+ liblinear-official
38
+ scipy
39
+ python_requires = >=3.7
40
+
41
+ [options.extras_require]
42
+ parameter-search =
43
+ bayesian-optimization
44
+ optuna
45
+ ray>=1.4.0
46
+ ray[tune]
47
+
48
+ [options.packages.find]
49
+ exclude =
50
+ docs
You can’t perform that action at this time.
0 commit comments