-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f4423cd
commit 523c7f2
Showing
1 changed file
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,13 +6,22 @@ | |
|
||
long_description = (here / "README.md").read_text(encoding="utf-8") | ||
|
||
import pathlib | ||
|
||
from setuptools import find_packages, setup | ||
|
||
here = pathlib.Path(__file__).parent.resolve() | ||
|
||
long_description = (here / "README.md").read_text(encoding="utf-8") | ||
|
||
setup( | ||
name='jira_export', | ||
version='0.0.1', | ||
version='0.0.2', | ||
description='Small program for exporting issues from Jira to pdf or html', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/lukaszmach/jira-export", | ||
download_url = 'https://github.com/lukaszmach/jira-export/archive/refs/tags/0.0.2.tar.gz', | ||
author='Łukasz Machowski', | ||
author_email='[email protected]', | ||
packages=find_packages(), | ||
|
@@ -21,5 +30,12 @@ | |
'jira', | ||
'pdfkit', | ||
'pypandoc-binary', | ||
'keyboard' | ||
], | ||
entry_points={ | ||
'console_scripts': [ | ||
'jira_export=jira_export:main', | ||
], | ||
}, | ||
) | ||
|