forked from outbrain-inc/torch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 763 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(name='torch',
version='0.4.1',
description="Prometheus aggregator",
long_description="""A Prometheus aggregator which registers with Consul for discovery purposes""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
author='Joshua Forman',
author_email='jforman@outbrain.com',
url='http://www.outbrain.com',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=False,
zip_safe=True,
install_requires=[
'WebOb',
'gevent',
],
entry_points="""
[console_scripts]
torch = torch.__main__:main
"""
)