-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (30 loc) · 960 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
from setuptools import setup
from setuptools import find_packages
setup(
name="nsq_api",
version="0.0.2",
description="API to read logs from NSQ for logagg",
keywords="nsq-api",
author="Deep Compute, LLC",
author_email="[email protected]",
url="https://github.com/deep-compute/nsq-api",
license="MIT",
dependency_links=["https://github.com/deep-compute/nsq-api"],
install_requires=[
"tornado",
"basescript==0.2.9",
"nsq-py==0.1.10",
"logagg-utils==0.5.2",
],
packages=find_packages("."),
include_package_data=True,
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
],
entry_points={"console_scripts": ["nsq-api = nsq_api:main"]},
)