-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 924 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 924 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
26
27
28
29
from setuptools import setup
with open("README.rst", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="gitfeatures",
version="1.0.3",
packages=["gitfeatures"],
package_data={"gitfeatures": ["templates/*.md"]},
license="MIT",
long_description=long_description,
long_description_content_type="text/x-rst",
python_requires=">=3.8",
install_requires=[
"jinja2>=3.0.0",
],
entry_points={
"console_scripts": [
"git-feature=gitfeatures.core:cli_feature",
"git-hotfix=gitfeatures.core:cli_hotfix",
"git-release=gitfeatures.core:cli_release",
"git-stable=gitfeatures.core:cli_stable",
"git-pullrequest=gitfeatures.core:cli_pullrequest",
"git-releasecandidate=gitfeatures.core:cli_releasecandidate",
"git-changelog=gitfeatures.core:cli_changelog",
]
},
)