forked from mozilla/mozcommitbuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 847 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 847 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
#from distutils.core import setup
#from setuptools import setup, find_packages
setup(name='mozcommitbuilder',
version='0.4.1',
description ="""Regression finder using Mozilla central repo""",
author="Sam Liu",
author_email="sam@ambushnetworks.com",
url='http://github.com/samliu/mozcommitbuilder',
license='MPL 1.1/GPL 2.0/LGPL 2.1',
packages=find_packages(exclude=['legacy']),
entry_points="""
[console_scripts]
mozcommitbuilder = mozcommitbuilder:buildercli
""",
install_requires = ['mozrunner >= 2.5.4', 'httplib2 >= 0.6.0'],
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent'
]
)