forked from DavidAntliff/py3tree
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (34 loc) · 1.12 KB
/
setup.py
File metadata and controls
executable file
·36 lines (34 loc) · 1.12 KB
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
32
33
34
35
36
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="py3tree",
version="0.0.3",
author="David Antliff",
author_email="david.antliff@gmail.com",
description="Display the i3 tree for the current or all workspaces",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="i3 i3ipc",
url="https://github.com/DavidAntliff/py3tree.git",
packages=["py3tree"],
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4",
install_requires=[
"future>=0.16.0",
"i3ipc>=1.5.1",
],
entry_points={
"console_scripts": [
"py3tree = py3tree.py3tree:main"
]
},
classifiers=(
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Environment :: X11 Applications",
"Topic :: Desktop Environment :: Window Managers",
"Operating System :: OS Independent",
),
)