-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
50 lines (46 loc) · 1.6 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
import io
import os
import setuptools
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='2.1.24.1',
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.9',
install_requires=[
'numpy>=1.24',
'pandas>=1.5',
'scipy>=1.11',
'scikit-learn>=1.1',
'JPype1>=1.5.0',
'pydantic>=2.0',
'requests>=2.32.3',
],
test_suite="tests",
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'
}
)