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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
# -*- coding: utf-8 -*-
__author__ = 'Renato de Pontes Pereira, Matthias Feurer, Joel Nothman'
__author_email__ = ('renato.ppontes@gmail.com, '
'feurerm@informatik.uni-freiburg.de, '
'joel.nothman@gmail.com')
__version__ = '2.5.0'
__date__ = '2020 08 31'
try:
import setuptools
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
import sys
from setuptools import setup
try:
mode = 'rU' if sys.version_info[0] == 2 else 'r'
with open('README.rst', mode):
long_description = f.read()
except:
long_description = ''
setup(
name='liac-arff',
version= __version__,
author= __author__,
author_email=__author_email__,
license='MIT License',
description='A module for read and write ARFF files in Python.',
long_description=long_description,
url='https://github.com/renatopp/liac-arff',
download_url='https://github.com/renatopp/liac-arff',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
keywords='arff weka parser liac python',
py_modules=['arff'],
package_data={'': ['README.rst', 'CHANGES.rst', 'LICENSE']},
test_suite='tests',
)
|