mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:54:05 +00:00
13 lines
231 B
Python
13 lines
231 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='@pname@',
|
||
|
version='@version@',
|
||
|
author='deter0',
|
||
|
description='@desc@',
|
||
|
install_requires=['pycairo', 'requests', 'PyGObject'],
|
||
|
scripts=[
|
||
|
'xborders',
|
||
|
],
|
||
|
)
|