2020-01-06 07:31:51 +01:00
|
|
|
#!/usr/bin/env python3.7
|
2019-04-06 23:50:54 +02:00
|
|
|
from os import environ
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='sau',
|
|
|
|
version='0.9.0',
|
|
|
|
description='Tool for auto-updating OS and packages',
|
|
|
|
author='Feffe',
|
|
|
|
author_email='feffe@fulh.ax',
|
|
|
|
url='https://fulh.ax/feffe/sau',
|
|
|
|
platforms=['FreeBSD', 'Linux'],
|
|
|
|
license='BSD',
|
|
|
|
packages=find_packages(),
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Environment :: Console',
|
|
|
|
'Intended Audience :: System Administrators',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Topic :: Utilities',
|
|
|
|
],
|
|
|
|
keywords='auto-update',
|
|
|
|
install_requires=['psutil>=5.6.1'],
|
|
|
|
scripts=['bin/sau']
|
|
|
|
)
|