mirror of
https://github.com/lubuntu-team/lubuntu-about.git
synced 2025-11-05 02:54:12 +00:00
15 lines
306 B
Python
Executable File
15 lines
306 B
Python
Executable File
#!/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 }
|
|
)
|