-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
56 lines (52 loc) · 1.91 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
# -*- coding: utf-8 -*-
from setuptools import setup
SHORTDESC = "catch22Forest - a forest classifier for time series based on catch22 for sktime"
DESC = """
It provides a random forest classification based on catch22 features
The package is provided under the GPLv3 license.
"""
setup(
name="catch22Forest",
version="0.0.0",
author="Carl H Lubba",
author_email="[email protected]",
url="https://github.com/chlubba/catch22",
description=SHORTDESC,
long_description=DESC,
license="GPLv3",
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
],
setup_requires=[
'numpy>=1.14.2',
'setuptools>=18.0',
],
install_requires=["scikit-learn", "sktime"],
python_requires=">=3.4.0",
provides=["catch22Forest"],
keywords=["machine learning", "time series distance"],
packages=["catch22Forest"],
# package_data={
# 'catch22Forest': ['*.pxd', '*.pyx', '*.c'],
# },
zip_safe=False
)