-
Notifications
You must be signed in to change notification settings - Fork 127
/
setup.py
43 lines (38 loc) · 1.07 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
# import codecs
# try:
# codecs.lookup('mbcs')
# except LookupError:
# ascii = codecs.lookup('ascii')
# func = lambda name, enc=ascii: {True: enc}.get(name=='mbcs')
# codecs.register(func)
from setuptools import setup, find_packages
requirements = [
'scipy', 'numpy', 'scikit-learn', 'Click'
]
test_requirements=[
'behave'
]
setup(
name='irisvmpy',
version='0.0.1',
description='SVM classifier for iris data-set',
author='Michal Dyzma',
author_email='[email protected]',
url ='https://github.com/mdyzma/jenkins-python-test',
download_url='https://github.com/mdyzma/jenkins-python-test/archive/0.0.1.tar.gz',
license='MIT',
packages=find_packages(),
install_requires=requirements,
entry_points={
'console_scripts': [
'irisvmpy = irisvmpy.iris:cli',
],
},
classifiers=[
'Development Status :: 1 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
],
zip_safe=False
)