forked from translate/pootle_fs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·46 lines (43 loc) · 1.63 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2006-2013 Translate House
#
# This file is part of pootle_fs.
#
# This software is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# This software is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# this software; if not, see <http://www.gnu.org/licenses/>.
"""Pootle filesystem plugins
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
setup(
name='pootle_fs',
version='0.0.1',
description='Pootle file system plugins',
long_description="Integration between Pootle and FS backends",
url='https://github.com/phlax/pootle_fs',
author='Ryan Northey',
author_email='[email protected]',
license='GPL3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GPL3',
'Programming Language :: Python :: 2.7',
],
keywords='pootle filesystem plugins',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
include_package_data=True,
install_requires=['pootle'],
entry_points={'pytest11': ['pootle_fs = pootle_fs_pytest.plugin']})