mirror of
https://github.com/borgbase/vorta
synced 2024-12-21 23:33:13 +00:00
Remove unused setuptools-git dependency (#1147)
* Remove unused setuptools-git dependency * Exclude macOS and pip temp files
This commit is contained in:
parent
60075318a6
commit
8b763a9af9
3 changed files with 11 additions and 8 deletions
|
@ -5,3 +5,5 @@ recursive-include src/vorta/i18n/qm *.qm
|
||||||
exclude src/vorta/i18n/qm/vorta.en.qm
|
exclude src/vorta/i18n/qm/vorta.en.qm
|
||||||
|
|
||||||
recursive-exclude tests *
|
recursive-exclude tests *
|
||||||
|
global-exclude *.DS_Store
|
||||||
|
global-exclude *.egg-info
|
||||||
|
|
|
@ -31,10 +31,13 @@ project_urls =
|
||||||
Source Code = https://github.com/borgbase/vorta
|
Source Code = https://github.com/borgbase/vorta
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
|
packages = find:
|
||||||
|
package_dir =
|
||||||
|
=src
|
||||||
|
include_package_data = true
|
||||||
python_requires = >=3.7
|
python_requires = >=3.7
|
||||||
setup_requires =
|
setup_requires =
|
||||||
pip >= 10
|
pip >= 10
|
||||||
setuptools_git
|
|
||||||
install_requires =
|
install_requires =
|
||||||
appdirs
|
appdirs
|
||||||
paramiko
|
paramiko
|
||||||
|
@ -55,6 +58,9 @@ tests_require =
|
||||||
gui_scripts =
|
gui_scripts =
|
||||||
vorta = vorta.__main__:main
|
vorta = vorta.__main__:main
|
||||||
|
|
||||||
|
[options.packages.find]
|
||||||
|
where=src
|
||||||
|
|
||||||
[tool:pytest]
|
[tool:pytest]
|
||||||
addopts = -vs
|
addopts = -vs
|
||||||
testpaths = tests
|
testpaths = tests
|
||||||
|
|
9
setup.py
Normal file → Executable file
9
setup.py
Normal file → Executable file
|
@ -1,8 +1,3 @@
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup()
|
||||||
include_package_data=True,
|
|
||||||
packages=find_packages('src'),
|
|
||||||
package_dir={'': 'src'},
|
|
||||||
package_data={'vorta.i18n': ['qm/*.qm']}
|
|
||||||
)
|
|
||||||
|
|
Loading…
Reference in a new issue