-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 796 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 796 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
from setuptools import find_packages, setup # type: ignore
def readme():
with open('./README.md', encoding='utf-8') as f:
content = f.read()
return content
setup(
name='pre_commit_hooks',
version='0.1.0',
description='A pre-commit hook for SI-Analytics',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/SIAnalytics/pre-commit-hooks',
author='SI-Analytics Authors',
author_email='hakjinlee@si-analytics.ai',
packages=find_packages(),
python_requires='>=3.6',
install_requires=['PyYAML'],
entry_points={
'console_scripts': [
'say-hello=pre_commit_hooks.say_hello:main',
'check-copyright=pre_commit_hooks.check_copyright:main',
],
},
)