mirror of
https://git.linux-kernel.at/oliver/ivatar.git
synced 2025-11-11 18:56:23 +00:00
7 lines
108 B
Python
7 lines
108 B
Python
# -*- coding: utf-8 -*-
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
packages=find_packages(),
|
|
)
|