mirror of
https://github.com/Derisis13/barusu.git
synced 2025-12-07 12:02:48 +01:00
9 lines
243 B
Python
9 lines
243 B
Python
from distutils.core import setup
|
|
|
|
import setuptools
|
|
|
|
setup(name="backup_assistant",
|
|
version='1.0', description="Python apt and dconf backup tool", author="Derisis13",
|
|
py_modules=["main"],
|
|
packages=setuptools.find_packages())
|