FeatureRank 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
FeatureRank/__init__.py
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
def add(a: float, b: float) :
|
|
2
|
+
return a + b
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
def subtract(a: float, b: float) :
|
|
6
|
+
return a - b
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def multiply(a: float, b: float) :
|
|
10
|
+
return a * b
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def divide(a: float, b: float) :
|
|
14
|
+
if b == 0:
|
|
15
|
+
raise ValueError("Bir sayı sıfıra bölünemez.")
|
|
16
|
+
return a / b
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: FeatureRank
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A lightweight Python library for basic arithmetic operations.
|
|
5
|
+
Author: Sercan
|
|
6
|
+
License: MIT
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Keywords: arithmetic,calculator,library,math,operations
|
|
9
|
+
Classifier: Development Status :: 3 - Alpha
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
18
|
+
Classifier: Topic :: Utilities
|
|
19
|
+
Requires-Python: >=3.10
|
|
20
|
+
Provides-Extra: dev
|
|
21
|
+
Requires-Dist: build>=1.2.2; extra == 'dev'
|
|
22
|
+
Requires-Dist: pytest>=8.3.0; extra == 'dev'
|
|
23
|
+
Requires-Dist: twine>=5.1.0; extra == 'dev'
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
|
|
26
|
+
# DeepRanker
|
|
27
|
+
|
|
28
|
+
[](https://www.python.org/downloads/)
|
|
29
|
+
[](LICENSE)
|
|
30
|
+
|
|
31
|
+
DeepRanker is a lightweight Python library that provides basic arithmetic operations. It's designed to be simple, efficient, and easy to integrate into your projects.
|
|
32
|
+
|
|
33
|
+
## Features
|
|
34
|
+
|
|
35
|
+
- ✨ Simple and intuitive API
|
|
36
|
+
- 🔢 Basic arithmetic operations (add, subtract, multiply, divide)
|
|
37
|
+
- 🛡️ Type hints for better code clarity
|
|
38
|
+
- ✅ Comprehensive error handling
|
|
39
|
+
- 🧪 Full test coverage
|
|
40
|
+
|
|
41
|
+
## Installation
|
|
42
|
+
|
|
43
|
+
Install FeatureRank from PyPI:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
pip install deepranker
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Or install from source:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
git clone https://github.com/yourusername/deepranker.git
|
|
53
|
+
cd deepranker
|
|
54
|
+
pip install -e .
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## Quick Start
|
|
58
|
+
|
|
59
|
+
```python
|
|
60
|
+
from FeatureRank import add, subtract, multiply, divide
|
|
61
|
+
|
|
62
|
+
print(add(10, 5)) # 15
|
|
63
|
+
print(subtract(10, 5)) # 5
|
|
64
|
+
print(multiply(10, 5)) # 50
|
|
65
|
+
print(divide(10, 5)) # 2.0
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## Available Functions
|
|
69
|
+
|
|
70
|
+
| Function | Description |
|
|
71
|
+
|----------|-------------|
|
|
72
|
+
| `add(a, b)` | Returns the sum of two numbers |
|
|
73
|
+
| `subtract(a, b)` | Returns the difference of two numbers |
|
|
74
|
+
| `multiply(a, b)` | Returns the product of two numbers |
|
|
75
|
+
| `divide(a, b)` | Returns the quotient of two numbers |
|
|
76
|
+
|
|
77
|
+
For detailed API documentation, see [docs/API.md](docs/API.md).
|
|
78
|
+
|
|
79
|
+
## Documentation
|
|
80
|
+
|
|
81
|
+
- 📖 [API Reference](docs/API.md) - Complete function documentation
|
|
82
|
+
- 🛠️ [Development Guide](docs/DEVELOPMENT.md) - Setup and contribution instructions
|
|
83
|
+
- 🤝 [Contributing Guide](docs/CONTRIBUTING.md) - How to contribute
|
|
84
|
+
- 📝 [Changelog](CHANGELOG.md) - Project history and version information
|
|
85
|
+
|
|
86
|
+
## Development
|
|
87
|
+
|
|
88
|
+
To set up a development environment:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
# Clone the repository
|
|
92
|
+
git clone https://github.com/yourusername/deepranker.git
|
|
93
|
+
cd deepranker
|
|
94
|
+
|
|
95
|
+
# Create a virtual environment
|
|
96
|
+
python -m venv venv
|
|
97
|
+
source venv/bin/activate # On Windows: venv\Scripts\activate
|
|
98
|
+
|
|
99
|
+
# Install in development mode with dependencies
|
|
100
|
+
pip install -e ".[dev]"
|
|
101
|
+
|
|
102
|
+
# Run tests
|
|
103
|
+
pytest
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
See [docs/DEVELOPMENT.md](docs/DEVELOPMENT.md) for more details.
|
|
107
|
+
|
|
108
|
+
## License
|
|
109
|
+
|
|
110
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
111
|
+
|
|
112
|
+
## Contributing
|
|
113
|
+
|
|
114
|
+
Contributions are welcome! Please see [docs/CONTRIBUTING.md](docs/CONTRIBUTING.md) for guidelines.
|
|
115
|
+
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
FeatureRank/__init__.py,sha256=nZiKFsghXxKpCyslW33C4Kz4mDCwXkhbDVNhGmGufRI,113
|
|
2
|
+
FeatureRank/basic_operator.py,sha256=f07Gf6nGkL-DxgAxn5kIJtlZY0xwDD9hBYV80CMWhGI,281
|
|
3
|
+
featurerank-0.1.0.dist-info/METADATA,sha256=6jqBklvyGA6E-OSXqFD42tpWDhl2DGutRSylUkxdR2Q,3280
|
|
4
|
+
featurerank-0.1.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
5
|
+
featurerank-0.1.0.dist-info/licenses/LICENSE,sha256=Uc92F-WFVeATh4xS9CnB85MgvoWAQ7etk-IftpTeRlQ,1062
|
|
6
|
+
featurerank-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Sercan
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|