forked from salmuz/classifip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·35 lines (32 loc) · 1.24 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
from setuptools import setup, find_packages
import os
resources_dir = os.path.join('resources')
datafiles = [(d, [os.path.join(d,f) for f in files])
for d, folders, files in os.walk(resources_dir)]
classifiers = """\
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: GNU General Public License (GPL)
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Mathematics
Programming Language :: Python
Programming Language :: Python :: 3
Operating System :: OS Independent"""
setup(
name='classifip',
version='0.2.1',
author='Sebastien Destercke',
author_email='[email protected]',
packages=find_packages(),
url='http://pypi.python.org/pypi/classifip/',
license="GNU General Public License (GPL)",
platforms = "any",
description='Classification with Imprecise Probability methods.',
long_description=open('README.rst').read(),
classifiers = classifiers.split('\n'),
install_requires=['numpy', 'cvxopt', 'scikit-learn', 'matplotlib', 'pandas',
'Orange3', 'python-constraint', 'feather-format'],
data_files= datafiles
)