Skip to content
This repository has been archived by the owner on Jul 2, 2022. It is now read-only.

Commit

Permalink
Fixed dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
aacebedo committed Nov 5, 2016
1 parent 29a941b commit e3b4c64
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
pyyaml>=3.10
progressbar2>=2.0.0
pathlib>=1.0.0
ansible>=2.2.0
enum>=0.4.6
colorlog>=2.7.0
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import os
from platform import python_version
import distutils
import pathlib
try:
from setuptools import setup, find_packages
except ImportError:
Expand All @@ -46,7 +45,7 @@ def execute_setup():
for fname in dirs:
for cur_file in os.listdir(os.path.join(dname, fname)):
if os.path.isfile(os.path.join(dname, fname, cur_file)):
real_path = pathlib.Path(os.path.join(dname, fname, cur_file)).relative_to("resources")
real_path = os.path.relpath((os.path.join(dname, fname, cur_file)), "resources")
data_files.append((os.path.join("i3xfce", "resources",
os.path.dirname(str(real_path))),
[os.path.join("resources", str(real_path))]))
Expand Down

0 comments on commit e3b4c64

Please sign in to comment.