26 lines
681 B
Python
26 lines
681 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='vacuumtube',
|
|
version='1.0.0',
|
|
author='Agatha V. Lovelace',
|
|
author_email='agatharose@wantscuddl.es',
|
|
description=('A small command line tool that displays information about your Borg backups'),
|
|
license='CNPL v7+',
|
|
url='https://git.lain.faith/sorceress/vacuum-tube',
|
|
python_requires=">=3.0",
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
install_requires=(
|
|
'rich==10.11.0',
|
|
'toml==0.10.2',
|
|
'tomli==1.2.1',
|
|
'setuptools'
|
|
),
|
|
entry_points={
|
|
'console_scripts': [
|
|
'vacuum-tube = vacuumtube.main:main'
|
|
]
|
|
}
|
|
)
|