Skip to content

Commit 4adeb28

Browse files
authored
Fix dependancies (#13)
* Fix and split build vs dev requirements * Re-add missing requirements * Fixes after updating cicd tools * Fix CITARTIONS file * forgot to merge the branch
1 parent 5d6638f commit 4adeb28

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

CITATION.cff

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
cff-version: 1.2.0
22
message: If you use this software, please cite it using these metadata.
33
title: Notify
4-
abstract: Create various message types, succuss, warning, error, info and system.
4+
abstract: Create various message types, success, warning, error, info and system.
55
type: software
6-
version: 0.1.0
7-
date-released: 2024-05-23
6+
version: 0.1.2
7+
date-released: 2024-06-24
88
repository-code: https://github.com/DevelopersToolbox/notify-package
99
keywords:
1010
- "Wolf Software"

requirements-dev.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
colorama==0.4.6
2+
pytest==8.2.2
3+
setuptools==70.1.0

requirements.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
11
colorama==0.4.6
2-
pytest==8.2.2
3-
setuptools==70.1.0

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,16 @@
1212

1313
setup(
1414
name='wolfsoftware.notify',
15-
version='0.1.0',
15+
version='0.1.2',
1616
author='Wolf Software',
1717
author_email='[email protected]',
18-
description='Draw lines on the console with optional text',
18+
description='Generate console base notification messages.',
1919
long_description=long_description,
2020
long_description_content_type='text/markdown',
2121
license='MIT',
2222
packages=['wolfsoftware.notify'],
2323
tests_require=['pytest'],
2424
test_suite='tests',
25-
install_requires=required,
2625
keywords=['python', 'notify'],
2726
url='https://github.com/DevelopersToolbox/notify-package',
2827

@@ -54,4 +53,5 @@
5453
'Topic :: Software Development',
5554
],
5655
python_requires='>=3.9',
56+
install_requires=required,
5757
)

0 commit comments

Comments
 (0)