forked from NUAA-AL/ALiPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.13 KB
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup
setup(
name='alipy',
version='1.2.5',
description='Active Learning in Python',
long_description=open('README.md', encoding='UTF-8').read(),
long_description_content_type='text/markdown',
author='Ying-Peng Tang, Guo-Xiang Li, Sheng-Jun Huang',
author_email='tangyp@nuaa.edu.cn, GuoXiangLi@nuaa.edu.cn, huangsj@nuaa.edu.cn',
url='https://github.com/NUAA-AL/ALiPy',
setup_requires=[],
install_requires=['numpy', 'scipy', 'scikit-learn', 'matplotlib', 'prettytable'],
packages=[
'alipy',
'alipy.data_manipulate',
'alipy.experiment',
'alipy.index',
'alipy.metrics',
'alipy.oracle',
'alipy.query_strategy',
'alipy.utils',
],
package_dir={
'alipy': 'alipy',
'alipy.data_manipulate': 'alipy/data_manipulate',
'alipy.experiment': 'alipy/experiment',
'alipy.index': 'alipy/index',
'alipy.metrics': 'alipy/metrics',
'alipy.oracle': 'alipy/oracle',
'alipy.query_strategy': 'alipy/query_strategy',
'alipy.utils': 'alipy/utils',
},
)