-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 997 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (30 loc) · 997 Bytes
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
"""
This file is part of the telex project.
See LICENSE.txt for licensing, CONTRIBUTORS.txt for contributor information.
Created on Jul 5, 2014.
"""
from setuptools import find_packages
from setuptools import setup
install_requirements = \
[line
for line in open('requirements.txt', 'rU').readlines()
if not line.startswith('-e')]
install_requirements.append('everest>=1.1dev')
setup(name='telex',
version='0.1',
description='REST server for remote execution of command line tools.',
author='F. Oliver Gathmann',
author_email='fogathmann at gmail.com',
license="MIT",
packages=find_packages(),
package_data={'': ["*.zcml"]},
include_package_data=True,
zip_safe=False,
install_requires=install_requirements,
dependency_links=
['https://github.com/cenix/everest/archive/master.zip#egg=everest-1.1dev'],
entry_points="""\
[paste.app_factory]
app = everest.run:app_factory
"""
)