forked from mozilla-releng/build-buildapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.23 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
40
41
42
43
44
45
46
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='buildapi',
version='0.3.19',
description='',
author='',
author_email='',
url='',
install_requires=[
"SQLAlchemy<0.9.0",
"kombu",
"pytz",
"MySQL-python",
"Pylons==1.0",
"WebOb==1.0.8",
"WebTest==1.2.3",
],
setup_requires=["PasteScript>=1.6.3"],
tests_require=["nose==1.0.0", "mock"],
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
test_suite='nose.collector',
package_data={'buildapi': ['i18n/*/LC_MESSAGES/*.mo']},
#message_extractors={'buildapi': [
# ('**.py', 'python', None),
# ('templates/**.mako', 'mako', {'input_encoding': 'utf-8'}),
# ('public/**', 'ignore', None)]},
zip_safe=False,
paster_plugins=['PasteScript', 'Pylons'],
entry_points="""
[paste.app_factory]
main = buildapi.config.middleware:make_app
[paste.app_install]
main = pylons.util:PylonsInstaller
[console_scripts]
selfserve-agent = buildapi.scripts.selfserve_agent:main
""",
)