mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-04-15 01:51:46 +04:00
12 lines
248 B
Python
12 lines
248 B
Python
# -*- coding: utf-8 -*-
|
|
from setuptools import find_packages
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='Foo',
|
|
version='0.0.0',
|
|
packages=find_packages('.'),
|
|
entry_points={
|
|
'console_scripts': ['foo = foo.main:func'],
|
|
},
|
|
)
|