forked from scott-w/jira-analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (20 loc) · 646 Bytes
/
setup.py
File metadata and controls
25 lines (20 loc) · 646 Bytes
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
from os.path import abspath, dirname, join
from setuptools import setup
readme_file = join(dirname(abspath(__file__)), "README.md")
try:
from m2r import parse_from_file
readme = parse_from_file(readme_file)
except ImportError:
with open(readme_file) as f:
readme = f.read()
setup(
author="Hotjar",
author_email="scott.walton@hotjar.com",
description="A set of tools for generating Jira reports",
name="jira-analysis",
install_requires=["arrow", "attrs", "bokeh", "click", "m2r", "requests", "toolz"],
license="MIT",
packages=["jira_analysis"],
scripts=["bin/jira-analysis"],
url="",
)