forked from oxidane/tmuxomatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (23 loc) · 862 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
##----------------------------------------------------------------------------------------------------------------------
##
## Installer for tmuxomatic
##
## The distutils is the only standard packaging library included with Python 3.x
##
##----------------------------------------------------------------------------------------------------------------------
from setuptools import setup, find_packages
setup(
name="tmuxomatic",
version='0.0',
author="Oxidane",
description="A completely different kind of tmux session manager.",
license="BSD 3-Clause (tmuxomatic), Other (windowgram)",
url="https://github.com/oxidane/tmuxomatic",
download_url="https://pypi.python.org/pypi/tmuxomatic",
author_email="invalid",
packages=find_packages(),
install_requires=[],
scripts=['bin/tmuxomatic'],
)