Skip to content

Commit

Permalink
Merge pull request #41 from abdelrahman0w/add-missing-install-deps
Browse files Browse the repository at this point in the history
fix: add missing deps
  • Loading branch information
abdelrahman0w committed Jan 31, 2024
2 parents de5e9eb + c08faee commit 5667a7e
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 33 deletions.
24 changes: 6 additions & 18 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,24 @@
# Changelog

## 0.1.2 (2024-01-31)

### Features
## 0.1.3 (2024-01-31)

### Fixed

- bug fixes
- add missing instsll requirements

### Changed
## 0.1.2 (2024-01-31)

### Removed
### Fixed

## 0.1.1 (2024-01-29)
- bug fixes

### Features
## 0.1.1 (2024-01-29)

### Fixed

- pre-commit hook
- bug in possible origins func

### Changed

### Removed

## 0.1.0 (2024-01-27)

### Features
Expand All @@ -35,9 +29,3 @@
- Ignores `.git` dir in case of git repo
- Ignores paths in `.gitignore` file
- Ability to ignore a file name, directory name, or a glob pattern

### Fixed

### Changed

### Removed
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
![license](https://img.shields.io/github/license/abdelrahman0w/ouro)
[![tox](https://github.com/abdelrahman0w/ouro/actions/workflows/tox.yml/badge.svg)](https://github.com/abdelrahman0w/ouro/actions/workflows/tox.yml)
[![pre-commit](https://github.com/abdelrahman0w/ouro/actions/workflows/pre-commit.yml/badge.svg)](https://github.com/abdelrahman0w/ouro/actions/workflows/pre-commit.yml)
![pypi-version](https://img.shields.io/pypi/v/ejustian-cli)
![pypi-downloads](https://img.shields.io/pypi/dm/ejustian-cli)
![pypi-version](https://img.shields.io/pypi/v/ouro)
![pypi-downloads](https://img.shields.io/pypi/dm/ouro)

- [Ouro](#ouro)
- [Description](#description)
Expand Down Expand Up @@ -140,7 +140,7 @@ ouro [-h] [-v] [--verbose] [--no-categorize] [-e] [-i IGNORE [IGNORE ...]] [path
```yaml
- repo: https://github.com/abdelrahman0w/ouro
rev: v0.1.2
rev: v0.1.3
hooks:
- id: ouro
```
Expand Down
2 changes: 1 addition & 1 deletion ouro/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__author__ = """Abdelrahman Abdelkhalek"""
__email__ = "abdelrahman.abdelkhalek@thndr.app"
__version__ = "0.1.2"
__version__ = "0.1.3"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.2
current_version = 0.1.3
commit = True
tag = True

Expand Down
17 changes: 7 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,16 @@
with open("CHANGELOG.md") as changelog_file:
changelog = changelog_file.read()

try:
with open("requirements.txt") as requirements_file:
requirements = requirements_file.read().splitlines()
except FileNotFoundError:
requirements = []

requirements = [
"pathspec>=0.12.1",
]
test_requirements = [
"pytest>=3",
]


description = """
ouro is a Python package that checks your code
for circular (cyclic) imports.
ouro is a Python package that checks your code for circular (cyclic) imports.
"""


Expand All @@ -31,7 +27,7 @@
author_email="abdelrahman.abdelkhalek@thndr.app",
python_requires=">=3.8",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
Expand All @@ -45,6 +41,7 @@
long_description_content_type="text/markdown",
include_package_data=True,
keywords=[
"python",
"ouro",
"circular",
"dependency",
Expand All @@ -63,6 +60,6 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/abdelrahman0w/ouro",
version="0.1.2",
version="0.1.3",
zip_safe=False,
)

0 comments on commit 5667a7e

Please sign in to comment.