-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 907 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
import arzela
with open('README.md', 'r', encoding='utf-8') as fd:
setup(
name='arzela',
version=arzela.__version__,
author='chengscott',
maintainer='chengscott',
description=arzela.__doc__,
long_description=fd.read(),
long_description_content_type='text/markdown',
url='https://github.com/chengscott/arzela',
license='BSD',
packages=['arzela'],
entry_points={
'console_scripts': ['arzela = arzela:run_main'],
},
install_requires=[
'zmq',
'requests',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Topic :: System :: Clustering',
'Topic :: System :: Monitoring',
],
)