Add the initial setup file.

This commit is contained in:
Simon Quigley 2018-01-27 22:51:00 -06:00
parent 2412383ff7
commit 2be6a2e63b
2 changed files with 14 additions and 0 deletions

14
setup.py Executable file
View File

@ -0,0 +1,14 @@
#!/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',
packages=['src'],
scripts=['src/lubuntu-about'],
cmdclass = { "build" : build_extra.build_extra }
)