-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·34 lines (31 loc) · 1.18 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
# -*- coding: utf-8 -*-
#
# Copyright (C) Pootle contributors.
#
# This file is a part of the Pootle project. It is distributed under the GPL3
# or later license. See the LICENSE file for a copy of the license and the
# AUTHORS file for copyright and authorship information.
"""Document Foundation Pootle plugins
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
setup(
name='tdf_pootle',
version='0.0.1',
description='Document Foundation Pootle extensions and plugins',
long_description="Tools and integrations for Pootle to work with Document Foundation localisation",
url='https://github.com/translate/tdf-pootle',
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='tdf pootle tools extensions plugins',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
include_package_data=True,
install_requires=['pootle'])