-
Notifications
You must be signed in to change notification settings - Fork 83
/
setup.py
36 lines (33 loc) · 1.58 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, find_packages
import re
for line in open('costcla/__init__.py'):
match = re.match("__version__ *= *'(.*)'", line)
if match:
__version__, = match.groups()
setup(name='costcla',
version=__version__,
description='costcla is a Python module for cost-sensitive machine learning (classification) ',
long_description=open('README.rst').read(),
author='Alejandro CORREA BAHNSEN',
author_email='[email protected]',
url='https://github.com/albahnsen/CostSensitiveClassification',
license='new BSD',
packages=find_packages(),
include_package_data = True,
keywords=['machine learning', 'classification', 'cost-sensitive'],
install_requires=['scikit-learn>=0.15.0b2','pandas>=0.14.0','numpy>=1.8.0', 'pyea>=0.2'],
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',],
)