Skip to content

Commit

Permalink
new tag
Browse files Browse the repository at this point in the history
  • Loading branch information
EhsanBitaraf committed Mar 25, 2023
1 parent d062548 commit bc84028
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog
All notable changes to this project will be documented in this file.

## v0.0.2 - 2023-03-25
### Improvements
- Improve pyproject.toml

### Bug Fixes
- Fix proccess_bar in export

## v0.0.1 - 2023-02-05

### Improvements
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@ There are various software and online systems for this, a brief review of which

This tool gives you the power to create a graph of articles and analyze it. This tool is designed as a **CLI** (command-line interface) and you can use it as a Python library.

[![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![GitHub commit](https://img.shields.io/github/last-commit/EhsanBitaraf/triple-a)](https://github.com/EhsanBitaraf/triple-a/main)
[![Release](https://img.shields.io/github/release/EhsanBitaraf/triple-a.svg?style=flat)]()
![Release](https://img.shields.io/github/release/EhsanBitaraf/triple-a)
<!-- ![Release](https://img.shields.io/github/release-date/EhsanBitaraf/triple-a) -->
![repo size](https://img.shields.io/github/repo-size/EhsanBitaraf/triple-a)

![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/EhsanBitaraf/triple-a)
<!-- ![PyPI - Wheel](https://img.shields.io/pypi/EhsanBitaraf/triple-a) -->
![Open Issue](https://img.shields.io/github/issues-raw/EhsanBitaraf/triple-a)
[![GitHub tag](https://img.shields.io/github/tag/EhsanBitaraf/triple-a.svg)](https://GitHub.com/EhsanBitaraf/triple-a/tags/)

# 🎮 Main Features

Expand Down
20 changes: 17 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
[tool.poetry]
name = "triplea"
version = "0.1.0"
description = ""
authors = ["Ehsan Bitaraf <[email protected]>"]
version = "0.0.1"
license = "Apache-2.0"
description = "Article Analysis Assistant"
authors = ["Ehsan Bitaraf <[email protected]>", "Maryam Jafarpour <[email protected]>"]
readme = "README.md"
repository = "https://github.com/EhsanBitaraf/triple-a"
keywords = ["graph", "semantic-scholar", "citation-graph"]
classifiers = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]

[tool.poetry.dependencies]
python = "^3.10"
Expand Down
2 changes: 1 addition & 1 deletion triplea/cli/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
default=True,
help="File name & path of output graph format.",
)
def export(generate_type, format_type, output_file):
def export(generate_type, format_type, output_file, proccess_bar):
l_nodes = []
l_edges = []
for g_type in generate_type:
Expand Down

0 comments on commit bc84028

Please sign in to comment.