-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·33 lines (26 loc) · 994 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
#!/usr/bin/env python
from os import path
from setuptools import find_packages, setup
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='urxvt_tabbed',
version='1.0.0',
license='GPLv3',
description='Tab wrapper for urxt',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/simonzack/urxvt-tabbed',
author='simonzack',
author_email='[email protected]',
install_requires=['pygobject', 'python-xlib', 'pyxdg'],
packages=find_packages(),
scripts=['bin/urxvt-tabbed-python'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Topic :: Terminals :: Terminal Emulators/X Terminals',
],
)