-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (32 loc) · 1.08 KB
/
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
39
from setuptools import setup, find_packages
install_requires = ['pyzmq', 'circus']
try:
import argparse # NOQA
except ImportError:
install_requires.append('argparse')
with open("README.rst") as f:
README = f.read()
with open("CHANGES.rst") as f:
CHANGES = f.read()
setup(name='circus-ringmaster',
version=0.1,
packages=find_packages(),
description="Circus Web Dashboard",
long_description=README,
author="Mozilla Foundation & contributors",
author_email="[email protected]",
include_package_data=True,
zip_safe=False,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha"],
install_requires=install_requires,
tests_require=['webtest', 'unittest2'],
test_suite='ringmaster.tests',
entry_points="""
[console_scripts]
circus-ringmaster = ringmaster:main
""")