mirror of
https://github.com/CopterExpress/clover.git
synced 2026-05-26 11:43:25 +00:00
11 lines
240 B
Python
Executable File
11 lines
240 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='clever',
|
|
version='1.0',
|
|
description='Clever transitional package for backwards compatibility',
|
|
author='Oleg Kalachev',
|
|
packages=['clever'],
|
|
)
|