-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathsetup.py
40 lines (32 loc) · 1.2 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
#!/usr/bin/env python
import setuptools
LICENSE = 'MIT'
if __name__ == "__main__":
setuptools.setup(
name='pykernels',
version='0.0.4',
description='Python library for working with kernel methods in machine learning',
author='Wojciech Marian Czarnecki and Katarzyna Janocha',
author_email='[email protected]',
url='https://github.com/gmum/pykernels',
license=LICENSE,
packages=setuptools.find_packages(),
install_requires=[
'numpy',
'scipy',
'scikit-learn',
],
classifiers=[
'Development Status :: 1 - Alpha',
'Intended Audience :: Machine Learning Research',
'License :: OSI Approved ::' + LICENSE,
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Machine Learning',
'Topic :: Scientific/Engineering :: Information Analysis',
],
zip_safe=True,
include_package_data=True,
)