-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (50 loc) · 1.43 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
41
42
43
44
45
46
47
48
49
50
51
52
53
import pathlib
from setuptools import find_packages, setup
README = (pathlib.Path(__file__).parent / "README.md").read_text()
setup(
name="git-jira",
description="A git addon to manage Jira from git",
long_description=README,
long_description_content_type="text/markdown",
version="0.5.0",
license="MIT",
author="rloredo",
author_email="[email protected]",
url="https://github.com/rloredo/git-jira",
keyword="git, jira",
python_requires=">=3.6.2",
packages=find_packages(),
entry_points="""
[console_scripts]
git-jira=git_jira.cli:cli
""",
install_requires=[
"click==8.0",
"jira==3.4",
"PyYAML==6.0",
"sh==1.14",
"pick==2.0",
"prettytable==3.4",
],
extras_require={
"dev": [
"tox==3.26",
"pytest==7.1",
"mypy==0.981",
"black==22.8",
"pylint==2.15",
"isort==5.10.1",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)