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.
lubuntu-update-notifier/setup.py

16 lines
384 B

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