mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-15 13:30:17 -06:00
11 lines
194 B
Python
11 lines
194 B
Python
from __future__ import annotations
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='foo',
|
|
version='0.0.0',
|
|
py_modules=['foo'],
|
|
entry_points={'console_scripts': ['foo = foo:main']},
|
|
)
|