You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
306 B

#!/usr/bin/python3
# -*- coding: utf-8 -*-
from distutils.core import setup
import glob
import os
from DistUtilsExtra.command import *
setup(name='lubuntu-about',
version='1.0.0',
packages=['src'],
scripts=['src/lubuntu-about'],
cmdclass = { "build" : build_extra.build_extra }
)