forked from pavel-paulau/harstorage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 916 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
from setuptools import setup, find_packages
setup(
name='harstorage',
version='1.0',
description='Free repository for performance measurements',
long_description="HAR Storage is repository for automated client-side performance testing. It's built on MongoDB and Pylons.",
author='Pavel Paulau',
author_email='Pavel.Paulau@gmail.com',
url='http://harstorage.com/',
license='BSD, see LICENSE.txt for details',
platforms=['Linux', 'Windows'],
setup_requires=[],
install_requires=[],
packages=find_packages(),
include_package_data=True,
test_suite='nose.collector',
package_data={'harstorage': ['i18n/*/LC_MESSAGES/*.mo']},
zip_safe=False,
paster_plugins=['PasteScript', 'Pylons'],
entry_points="""
[paste.app_factory]
main = harstorage.config.middleware:make_app
[paste.app_install]
main = pylons.util:PylonsInstaller
""",
)