-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
34 lines (32 loc) · 1009 Bytes
/
setup.py
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
from setuptools import setup
from setuptools import find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='i3-resurrect',
version='1.4.5',
packages=['i3_resurrect'],
author='Jonathan Haylett',
author_email='[email protected]',
url='https://github.com/JonnyHaystack/i3-resurrect',
license='GNU GPL Version 3',
python_requires='>=3.6',
install_requires=[
'Click',
'i3ipc',
'natsort',
'psutil',
],
entry_points={
'console_scripts': ['i3-resurrect=i3_resurrect.main:main'],
},
description=('A simple but flexible solution to saving and restoring i3 '
'workspace layouts'),
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
],
)