Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszmach authored Oct 7, 2024
1 parent f4423cd commit 523c7f2
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand All @@ -21,5 +30,12 @@
'jira',
'pdfkit',
'pypandoc-binary',
'keyboard'
],
entry_points={
'console_scripts': [
'jira_export=jira_export:main',
],
},
)

0 comments on commit 523c7f2

Please sign in to comment.