summaryrefslogtreecommitdiffstats
path: root/comm/third_party/python/fluent.migratetb/setup.py
blob: 9a40a580c14645e9b032ab53f1e4a1bb2a5658a3 (plain)
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
#!/usr/bin/env python

from setuptools import setup

setup(
    name='fluent.migratetb',
    version='0.11.2',
    description='Toolchain to migrate legacy translation to Fluent. (Thunderbird fork)',
    author='Mozilla',
    author_email='l10n-drivers@mozilla.org',
    license='APL 2',
    url='https://github.com/jfx2006/tb-fluent-migrate/',
    keywords=['fluent', 'localization', 'l10n'],
    classifiers=[
        'Development Status :: 3 - Alpha',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: Apache Software License',
        'Programming Language :: Python :: 3.7',
    ],
    packages=['fluent', 'fluent.migratetb'],
    install_requires=[
        'compare-locales >=8.1, <9.0',
        'fluent.syntax >=0.18.0, <0.19',
        'six',
    ],
    extras_require={
        'hg': ['python-hglib',],
    },
    tests_require=[
        'mock',
    ],
    test_suite='tests.migratetb'
)