mirror of
https://github.com/Guake/guake.git
synced 2025-10-26 11:27:13 +00:00
13 lines
254 B
Python
13 lines
254 B
Python
#!/usr/bin/env python3
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
setup_requires=['pbr'],
|
|
pbr=True,
|
|
)
|