forked from altdesktop/i3ipc-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1017 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup
from os import path
readme_path = path.join(path.abspath(path.dirname(__file__)), 'README.rst')
long_description = open(readme_path).read()
install_requires = ['python3-xlib', 'enum34']
setup(
name='i3ipc',
version='1.1.4',
description='An improved Python library for i3wm extensions',
long_description=long_description,
url='https://github.com/acrisci/i3ipc-python',
author='Tony Crisci',
author_email='tony@dubstepdish.com',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
keywords='i3 i3wm extensions add-ons',
py_modules=['i3ipc'],
install_requires=install_requires,
)