Skip to content

Commit 8a651b5

Browse files
authored
Merge pull request #99 from ASUS-AICS/pypi_
PyPi
2 parents ccdf78e + 0a208aa commit 8a651b5

File tree

3 files changed

+58
-1
lines changed

3 files changed

+58
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ celerybeat-schedule
103103
.env
104104
.venv
105105
env/
106-
venv/
106+
venv*/
107107
ENV/
108108
env.bak/
109109
venv.bak/
@@ -148,6 +148,7 @@ tmp*
148148
*.lock
149149
*.pt
150150
*.zip
151+
*.tar.gz
151152
*.ckpt
152153
*.tfevents.*
153154

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[build-system]
2+
requires = [
3+
"setuptools>=42",
4+
"wheel"
5+
]
6+
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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

0 commit comments

Comments
 (0)