-
Notifications
You must be signed in to change notification settings - Fork 63
/
setup.py
87 lines (75 loc) · 3.31 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
"""~This file is part of the Aliro library~
Copyright (C) 2023 Epistasis Lab,
Center for Artificial Intelligence Research and Education (CAIRE),
Department of Computational Biomedicine (CBM),
Cedars-Sinai Medical Center.
Aliro is maintained by:
- Hyunjun Choi ([email protected])
- Miguel Hernandez ([email protected])
- Nick Matsumoto ([email protected])
- Jay Moran ([email protected])
- and many other generous open source contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
(Autogenerated header, do not modify)
"""
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
def calculate_version():
initpy = open('.env').read().split('\n')
version = list(filter(lambda x: 'TAG' in x, initpy))[0].split('=')[1]
return version
package_version = calculate_version()
setup(
name='aliropy',
version=package_version,
author='Heather Williams, Weixuan Fu, William La Cava',
packages=['aliro',
'aliro.metalearning',
'aliro.sklearn',
'aliro.recommender',
'aliro.sklearn.config'],
package_dir={'aliro': 'ai',
'aliro.metalearning': 'ai/metalearning',
'aliro.sklearn': 'ai/sklearn',
'aliro.recommender': 'ai/recommender',
'aliro.sklearn.config': 'ai/sklearn/config'},
url='https://github.com/epistasislab/Aliro',
license='GNU/GPLv3',
test_suite='nose.collector',
tests_require=['nose'],
description=('Penn Artificial Intelligence Data Assistant'),
long_description='''
A system that intelligently manages machine learning workflows for data science
Contact: Heather Williams ([email protected]), Weixuan Fu ([email protected]), William La Cava ([email protected])
Contact: Nick Matsumoto ([email protected]), Jay Moran ([email protected]), Jun Choi ([email protected])
This project is hosted at https://github.com/epistasislab/Aliro
''',
zip_safe=True,
install_requires=['numpy>=1.16.3',
'scipy>=1.3.1',
'scikit-learn>=0.22.0',
'pandas>=0.24.2',
'joblib>=0.13.2',
'simplejson>=3.17.0'
],
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
keywords=['data science', 'machine learning','metalearning'],
)