forked from ntucllab/libcll
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (33 loc) · 1.09 KB
/
setup.py
File metadata and controls
executable file
·35 lines (33 loc) · 1.09 KB
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
from setuptools import setup
with open("./requirements.txt") as f:
install_requires = f.read().splitlines()
setup(
name="libcll",
version="1.0.0",
description="Pool-based cllive learning in Python",
author="N.-X. Ye, H.-H. Wang, H.-T. Lin",
author_email="b09902008@csie.ntu.edu.tw, b09902033@csie.ntu.edu.tw, empennage98@gmail.com",
url="https://github.com/yahcreepers/libcll",
install_requires=install_requires,
classifiers=[
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
test_suite="libcll",
packages=[
"libcll",
"libcll.datasets",
"libcll.models",
"libcll.strategies",
],
package_dir={
"libcll": "libcll",
"libcll.datasets": "libcll/datasets",
"libcll.models": "libcll/models",
"libcll.strategies": "libcll/strategies",
},
)