-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 842 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 842 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
requirements = ["pre-commit", "six"]
setup(
author="Deployed.pl",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
description="pre-commit hook for adding issue ticket number to your git commit messages",
install_requires=requirements,
name="pre_ticket",
version="1.0.0",
license="MIT license",
keywords="pre_ticket",
url="https://github.com/deployed/pre_ticket",
packages=find_packages(include=["pre_ticket"]),
include_package_data=True,
entry_points={"console_scripts": ["pre_ticket = pre_ticket.cli:main"]},
)