-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (31 loc) · 852 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
36
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-rofi-mark',
version="0.1.0",
author='Tal Wrii',
author_email='talwrii@gmail.com',
description='',
license='GPLv3',
keywords='',
url='',
packages=['i3_rofi_mark'],
long_description='See https://github.com/talwrii/i3-rofi-mark',
entry_points={
'console_scripts': ['i3-rofi-mark=i3_rofi_mark.i3_rofi_mark:main']
},
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)"
],
test_suite='nose.collector',
install_requires=[]
)