-
Notifications
You must be signed in to change notification settings - Fork 49
/
setup.py
62 lines (57 loc) · 2.08 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# -*- 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:
with open('README.rst', 'r'):
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='>=3.6',
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 :: 3',
'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']},
data_files=[('LICENSE')],
test_suite='tests',
)