-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
38 lines (30 loc) · 895 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
37
38
#!/usr/bin/env python
# to distribute:
# python setup.py register sdist upload
from setuptools import setup
from pip.req import parse_requirements
import os
import webmux
reqs = []
try:
install_reqs = parse_requirements(os.path.join(os.path.dirname(__file__), 'requirements.txt'))
reqs = [str(ir.req) for ir in install_reqs]
except:
pass
setup(
name='webmux',
version=webmux.__version__,
description='An open-source web based SSH terminal multiplexer',
long_description='An open-source web based SSH terminal multiplexer',
author='Ron Reiter (@ronreiter)',
author_email='[email protected]',
url='http://github.com/ronreiter/webmux',
packages=['webmux'],
scripts=['webmuxd'],
license='MIT',
install_requires=reqs,
include_package_data=True,
package_data={
'webmux': ['webmux/static', 'webmux/templates']
},
)