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.
16 lines
408 B
16 lines
408 B
#!/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'])]
|
|
)
|