-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (30 loc) · 854 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
35
import sys
try:
# Setuptools entry point is slow.
# If we have `festentrypoint` then use a fast entry point
import fastentrypoints
except ImportError:
sys.stdout.write('Not using fastentrypoints\n')
pass
import setuptools
import os
HERE = os.path.dirname(__file__)
setuptools.setup(
name='i3-clever-layout',
version="0.1.0",
author='Tal Wrii',
author_email='[email protected]',
description='',
license='GPLv3',
keywords='',
url='',
packages=['i3_clever_layout'],
long_description='See https://github.com/talwrii/i3-clever-layout',
entry_points={
'console_scripts': ['i3-clever-layout=i3_clever_layout.i3_clever_layout:main']
},
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)"
],
install_requires=['fasteners']
)