forked from bartdag/pymining
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.09 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='pymining',
version='0.2',
description='Small collection of data mining algorithms',
long_description='''
pymining is a small collection of data mining algorithms implemented in Python
(no C extension). This is mainly useful for environments without support for C.
All algorithms come from the scientific literature.
''',
author='Barthelemy Dagenais',
author_email='[email protected]',
license='BSD License',
url='https://github.com/bartdag/pymining',
packages=['pymining'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Topic :: Software Development :: Libraries',
],
)