-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
37 lines (35 loc) · 1.25 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
from setuptools import setup, find_packages
version = '0.9'
pkg_name = "anybox.buildbot.openerp"
setup(
name=pkg_name,
version=version,
author="Anybox SAS",
author_email="[email protected]",
description="Buildbot setup for buildout based openerp installations",
license="Affero GPLv3",
long_description=open('README.rst').read() + open('CHANGES.rst').read(),
url="http://pypi.python.org/pypi/anybox.buildbot.openerp",
packages=find_packages(),
zip_safe=False,
include_package_data=True,
namespace_packages=['anybox', 'anybox.buildbot'],
install_requires=['buildbot >= 0.8.7, < 0.9.0b1',
'bzr',
],
tests_require=['nose'],
test_suite='nose.collector',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU Affero General Public License v3 '
'or later (AGPLv3+)',
],
entry_points="""
[console_scripts]
"""
)