-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
27 lines (25 loc) · 1.02 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
from setuptools import setup, find_packages
setup(name='strkernel',
version='0.2',
description='Collection of string kernels',
long_description='This packages includes a variety of string kernel methods. Each method transforms the list of input strings into a format that can be used by machine learning algorithm (e.g. SVM).',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Text Processing',
],
keywords='string kernel SVM machine learning',
url='https://github.com/jakobhertzberg/string-kernel',
author='Meng Zhang, Mitra Darvish, Jakob Hertzberg',
author_email='[email protected], [email protected]',
test_suite='nose.collector',
tests_require=['nose'],
packages=find_packages(),
install_requires=[
'scipy',
'numpy',
'Biopython'
],
include_package_data=True,
zip_safe=False)