-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
27 lines (24 loc) · 958 Bytes
/
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
from setuptools import setup
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="cz_github_jira_conventional",
version="3.0.0",
py_modules=["cz_github_jira_conventional"],
author="Falko Krause, apheris AI GmbH",
author_email="f.krause@apheris.com",
license="MIT",
url="https://github.com/apheris/cz-github-jira-conventional",
install_requires=["commitizen>=3.21.3"],
description="Extend the commitizen tools to create conventional commits and README that link to Jira and GitHub.",
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
"commitizen.plugin": [
"cz_github_jira_conventional = cz_github_jira_conventional:GithubJiraConventionalCz"
]
},
)