Skip to content

Commit 7fd9609

Browse files
Minor edits (#168)
* fix : setup.py description updated * fix : setup.py keywords updated * fix : setup.py redundant classifiers removed * doc : pypi badge bug fixed * doc : repo-size badge added * doc : CHANGELOG.md updated * doc : AUTHORS.md updated * doc : CHANGELOG.md updated * doc : README.md indent bug fixed * fix : minor edit in setup.py
1 parent 3d63b14 commit 7fd9609

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

AUTHORS.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Authors #
2-
1+
# Core Developers
32
----------
43
- AmirHosein Rostami - Open Science Laboratory ([Github](https://github.com/AHReccese)) **
54
- Sepand Haghighi - Open Science Laboratory ([Github](https://github.com/sepandhaghighi))
@@ -9,6 +8,9 @@
98

109
** **Maintainer**
1110

12-
# Other Contributors #
11+
# Other Contributors
1312
----------
14-
- Zahra Mobasher ([Instagram](https://www.instagram.com/littleblackoyster/?hl=en))
13+
- [@zhmbshr](https://github.com/zhmbshr) ++
14+
15+
16+
++ **Graphic designer**

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [Unreleased]
8+
### Changed
9+
- `README.md` updated
10+
- `AUTHORS.md` updated
711
## [1.1] - 2024-11-25
812
### Added
913
- `is_socket_closed` function in `streaming.communicator.py`

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
<br/>
44
<br/>
55
<a href="https://codecov.io/gh/openscilab/pymilo"><img src="https://codecov.io/gh/openscilab/pymilo/branch/main/graph/badge.svg" alt="Codecov"/></a>
6-
<a href="https://badge.fury.io/py/pymilo"><img src="https://badge.fury.io/py/pymilo.svg" alt="PyPI version" height="18"></a>
6+
<a href="https://badge.fury.io/py/pymilo"><img src="https://badge.fury.io/py/pymilo.svg" alt="PyPI version"></a>
77
<a href="https://anaconda.org/openscilab/pymilo"><img src="https://anaconda.org/openscilab/pymilo/badges/version.svg"></a>
88
<a href="https://www.python.org/"><img src="https://img.shields.io/badge/built%20with-Python3-green.svg" alt="built with Python3"></a>
9+
<a href="https://github.com/openscilab/pymilo"><img alt="GitHub repo size" src="https://img.shields.io/github/repo-size/openscilab/pymilo"></a>
910
<a href="https://discord.gg/mtuMS8AjDS"><img src="https://img.shields.io/discord/1064533716615049236.svg" alt="Discord Channel"></a>
1011
</div>
1112

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,21 @@ def read_description():
2929
description += c.read()
3030
return description
3131
except Exception:
32-
return '''Transportation of ML models'''
32+
return '''PyMilo: Python for ML I/O'''
3333

3434

3535
setup(
3636
name='pymilo',
3737
packages=find_packages(include=['pymilo*'], exclude=['tests*']),
3838
version='1.1',
39-
description='Transportation of ML models',
39+
description='PyMilo: Python for ML I/O',
4040
long_description=read_description(),
4141
long_description_content_type='text/markdown',
4242
author='PyMilo Development Team',
4343
author_email='[email protected]',
4444
url='https://github.com/openscilab/pymilo',
4545
download_url='https://github.com/openscilab/pymilo/tarball/v1.1',
46-
keywords="python3 python machine_learning ML",
46+
keywords="machine_learning ml ai mlops model export import",
4747
project_urls={
4848
'Source': 'https://github.com/openscilab/pymilo',
4949
},
@@ -54,7 +54,6 @@ def read_description():
5454
python_requires='>=3.6',
5555
classifiers=[
5656
'Development Status :: 3 - Alpha',
57-
'Intended Audience :: Developers',
5857
'Natural Language :: English',
5958
'License :: OSI Approved :: MIT License',
6059
'Operating System :: OS Independent',

0 commit comments

Comments
 (0)