-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (48 loc) · 1.65 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (48 loc) · 1.65 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
50
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="fdfs",
version="0.1.0",
description="Optimized fuzzy-discernibility-based feature selector for large datasets",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.comcserajdeep/fdfs",
author="Rajdeep Chatterjee",
author_email="research.ra17@gmail.com",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
keywords="feature-selection, fuzzy-logic, machine-learning, optimization",
packages=find_packages(),
python_requires=">=3.8, <4",
install_requires=[
"pandas>=1.3.0",
"numpy>=1.21.0",
"scikit-learn>=1.0.0",
"psutil>=5.8.0",
"pyyaml>=6.0",
],
extras_require={
"numba": ["numba>=0.55.0"],
"dev": ["pytest>=7.0", "twine>=4.0.0", "black>=22.0"],
},
entry_points={
"console_scripts": [
"fdfs=fdfs.core:main_cli",
],
},
project_urls={
"Bug Reports": "https://github.com/cserajdeep/fdfs/issues",
"Source": "https://github.com/cserajdeep/fdfs",
},
)