forked from adaa-polsl/RuleKit-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (46 loc) · 1.69 KB
/
setup.py
File metadata and controls
49 lines (46 loc) · 1.69 KB
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
import setuptools
import os
import io
current_path = os.path.dirname(os.path.realpath(__file__))
with io.open("README.md", mode="r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="rulekit",
version='1.6.0',
author="Cezary Maszczyk",
author_email="cezary.maszczyk@gmail.com",
description="Comprehensive suite for rule-based learning",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/adaa-polsl/RuleKit",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Java",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
],
include_package_data = True,
python_requires='>=3.6',
install_requires=[
"pandas ~= 1.2.1",
"scikit-learn ~= 0.24.1",
"requests ~= 2.25.1",
"scipy ~= 1.6.0",
"joblib ~= 1.0.0",
"JPype1 ~= 1.2.1",
],
test_suite="tests",
download_url = 'https://github.com/adaa-polsl/RuleKit-python/archive/refs/tags/v1.6.0.tar.gz',
project_urls={
'Bug Tracker': 'https://github.com/adaa-polsl/RuleKit-python/issues',
'Documentation': 'https://adaa-polsl.github.io/RuleKit-python/',
'Source Code': 'https://github.com/adaa-polsl/RuleKit-python'
}
)