aek-auto-mlbuilder 0.0.1__tar.gz
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.
- aek_auto_mlbuilder-0.0.1/LICENSE +0 -0
- aek_auto_mlbuilder-0.0.1/PKG-INFO +19 -0
- aek_auto_mlbuilder-0.0.1/README.md +0 -0
- aek_auto_mlbuilder-0.0.1/aek_auto_mlbuilder/__init__.py +0 -0
- aek_auto_mlbuilder-0.0.1/aek_auto_mlbuilder/base.py +0 -0
- aek_auto_mlbuilder-0.0.1/aek_auto_mlbuilder/utils.py +0 -0
- aek_auto_mlbuilder-0.0.1/aek_auto_mlbuilder.egg-info/PKG-INFO +19 -0
- aek_auto_mlbuilder-0.0.1/aek_auto_mlbuilder.egg-info/SOURCES.txt +11 -0
- aek_auto_mlbuilder-0.0.1/aek_auto_mlbuilder.egg-info/dependency_links.txt +1 -0
- aek_auto_mlbuilder-0.0.1/aek_auto_mlbuilder.egg-info/top_level.txt +1 -0
- aek_auto_mlbuilder-0.0.1/pyproject.toml +3 -0
- aek_auto_mlbuilder-0.0.1/setup.cfg +4 -0
- aek_auto_mlbuilder-0.0.1/setup.py +16 -0
File without changes
|
@@ -0,0 +1,19 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: aek-auto-mlbuilder
|
3
|
+
Version: 0.0.1
|
4
|
+
Summary: Automatic ML model builder in Python
|
5
|
+
Home-page: https://github.com/alpemre8/aek-auto-mlbuilder
|
6
|
+
Author: Alp Emre Karaahmet
|
7
|
+
Author-email: alpemrekaraahmet@gmail.com
|
8
|
+
License: MIT
|
9
|
+
Requires-Python: >=3.8
|
10
|
+
Description-Content-Type: text/markdown
|
11
|
+
License-File: LICENSE
|
12
|
+
Dynamic: author
|
13
|
+
Dynamic: author-email
|
14
|
+
Dynamic: description-content-type
|
15
|
+
Dynamic: home-page
|
16
|
+
Dynamic: license
|
17
|
+
Dynamic: license-file
|
18
|
+
Dynamic: requires-python
|
19
|
+
Dynamic: summary
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,19 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: aek-auto-mlbuilder
|
3
|
+
Version: 0.0.1
|
4
|
+
Summary: Automatic ML model builder in Python
|
5
|
+
Home-page: https://github.com/alpemre8/aek-auto-mlbuilder
|
6
|
+
Author: Alp Emre Karaahmet
|
7
|
+
Author-email: alpemrekaraahmet@gmail.com
|
8
|
+
License: MIT
|
9
|
+
Requires-Python: >=3.8
|
10
|
+
Description-Content-Type: text/markdown
|
11
|
+
License-File: LICENSE
|
12
|
+
Dynamic: author
|
13
|
+
Dynamic: author-email
|
14
|
+
Dynamic: description-content-type
|
15
|
+
Dynamic: home-page
|
16
|
+
Dynamic: license
|
17
|
+
Dynamic: license-file
|
18
|
+
Dynamic: requires-python
|
19
|
+
Dynamic: summary
|
@@ -0,0 +1,11 @@
|
|
1
|
+
LICENSE
|
2
|
+
README.md
|
3
|
+
pyproject.toml
|
4
|
+
setup.py
|
5
|
+
aek_auto_mlbuilder/__init__.py
|
6
|
+
aek_auto_mlbuilder/base.py
|
7
|
+
aek_auto_mlbuilder/utils.py
|
8
|
+
aek_auto_mlbuilder.egg-info/PKG-INFO
|
9
|
+
aek_auto_mlbuilder.egg-info/SOURCES.txt
|
10
|
+
aek_auto_mlbuilder.egg-info/dependency_links.txt
|
11
|
+
aek_auto_mlbuilder.egg-info/top_level.txt
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
aek_auto_mlbuilder
|
@@ -0,0 +1,16 @@
|
|
1
|
+
from setuptools import setup, find_packages
|
2
|
+
|
3
|
+
setup(
|
4
|
+
name="aek-auto-mlbuilder", # PyPI dağıtım adı
|
5
|
+
version="0.0.1",
|
6
|
+
description="Automatic ML model builder in Python",
|
7
|
+
long_description=open("README.md", encoding="utf-8").read(),
|
8
|
+
long_description_content_type="text/markdown",
|
9
|
+
author="Alp Emre Karaahmet",
|
10
|
+
author_email="alpemrekaraahmet@gmail.com",
|
11
|
+
url="https://github.com/alpemre8/aek-auto-mlbuilder",
|
12
|
+
license="MIT",
|
13
|
+
packages=find_packages(),
|
14
|
+
python_requires=">=3.8",
|
15
|
+
install_requires=[], # bağımlılıkları buraya eklersin
|
16
|
+
)
|