Skip to content

Commit 3019e9e

Browse files
committed
Version 0.1.0
1 parent 09552d3 commit 3019e9e

5 files changed

Lines changed: 11 additions & 9 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Radin-System
3+
Copyright (c) 2025 Hmohammad
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "py-ami-client"), to deal

MANIFEST.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
include README.md
2-
include LICENSE
2+
include LICENSE
3+
exclude test/*
4+
prune test

ami_client/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.0.3'
1+
__version__ = '0.1.0'
22

33

44
def get_version() -> str:

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "py-ami-client"
7-
version = "0.0.3"
7+
version = "0.1.0"
88
description = "Python Asterisk Management Interface Client"
99
readme = "README.md"
1010
license = { file = "LICENSE" }
1111
authors = [
12-
{ name = "Radin-System", email = "technical@rsto.ir" }
12+
{ name = "hmohammad2520-org", email = "hmohammad2520@gmail.com" }
1313
]
1414
keywords = ["python", "library", "asterisk", "ami"]
1515
classifiers = [
@@ -23,5 +23,5 @@ dependencies = [
2323
requires-python = ">=3.9"
2424

2525
[project.urls]
26-
Homepage = "https://github.com/Radin-System/py-ami-client"
27-
BugTracker = "https://github.com/Radin-System/py-ami-client/issues"
26+
Homepage = "https://github.com/hmohammad2520-org/py-ami-client"
27+
BugTracker = "https://github.com/hmohammad2520-org/py-ami-client/issues"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='py-ami-client',
5-
version='0.0.3',
5+
version='0.1.0',
66
license="MIT",
77
description='Python Asterisk Management Interface Client',
88
author='Radin-System',
@@ -11,7 +11,7 @@
1111
install_requires=[
1212
"classmods==0.3.2",
1313
],
14-
packages=find_packages(),
14+
packages=find_packages(exclude=['test', 'test.*']),
1515
include_package_data=True,
1616
zip_safe=False,
1717
)

0 commit comments

Comments
 (0)