mirror of
https://github.com/borgbase/vorta
synced 2024-12-22 15:57:34 +00:00
7 lines
148 B
Python
7 lines
148 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
include_package_data=True,
|
|
packages=find_packages('src'),
|
|
package_dir={'': 'src'}
|
|
)
|