forked from douban/pymesos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 693 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
version = '0.1.5'
setup(
name='pymesos',
version=version,
description="A pure python implementation of Mesos scheduler and executor",
packages=find_packages(),
install_requires=['mesos.interface>=0.25'],
platforms=['POSIX'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python',
],
author="Zhongbo Tian",
author_email="tianzhongbo@douban.com",
url="https://github.com/douban/pymesos",
download_url = 'https://github.com/douban/pymesos/archive/%s.tar.gz' % version,
)