-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (32 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import pathlib
from setuptools import find_packages, setup
here = pathlib.Path(__file__).parent.resolve()
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.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='macherek@o2.pl',
packages=find_packages(),
install_requires=[
'configparser',
'jira',
'pdfkit',
'pypandoc-binary',
'keyboard'
],
entry_points={
'console_scripts': [
'jira_export=jira_export:main',
],
},
)