16 lines
408 B
Python
16 lines
408 B
Python
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup
|
|
# from distutils.core import setup
|
|
# from DistUtilsExtra.command import *
|
|
|
|
setup(
|
|
name="lubuntu-update-notifier",
|
|
version="0.1",
|
|
packages=['lubuntu-update-notifier'],
|
|
scripts=['lubuntu-upgrader'],
|
|
data_files=[
|
|
('lib/lubuntu-update-notifier/',
|
|
['lubuntu-upg-notifier.sh', 'lubuntu-notifier.py'])]
|
|
)
|