We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0db7a0f commit 1d19161Copy full SHA for 1d19161
setup.py
@@ -1,17 +1,10 @@
1
from setuptools import setup
2
from os import path
3
-import sys
4
5
readme_path = path.join(path.abspath(path.dirname(__file__)), 'README.rst')
6
long_description = open(readme_path).read()
7
8
-install_requires = []
9
-if sys.version_info >= (3,):
10
- install_requires.append('python3-xlib')
11
-else:
12
- install_requires.append('python-xlib')
13
-if sys.version_info <= (3, 3):
14
- install_requires.append('enum34')
+install_requires = ['python3-xlib', 'enum34']
15
16
setup(
17
name='i3ipc',
0 commit comments