forked from mirrors/gecko-dev
This updates compare-locales to 8.0. The major version bump is due to the changes to the json output. This also updates fluent.syntax to 0.17. Vendor in fluent.migrate 0.9. This is the first formal vendoring, the version we had in-tree wasn't released on pypi before. Differential Revision: https://phabricator.services.mozilla.com/D75127
24 lines
935 B
Python
Executable file
24 lines
935 B
Python
Executable file
#!/usr/bin/env python
|
|
from setuptools import setup
|
|
|
|
setup(name='fluent.syntax',
|
|
version='0.17.0',
|
|
description='Localization library for expressive translations.',
|
|
long_description='See https://github.com/projectfluent/python-fluent/ for more info.',
|
|
author='Mozilla',
|
|
author_email='l10n-drivers@mozilla.org',
|
|
license='APL 2',
|
|
url='https://github.com/projectfluent/python-fluent',
|
|
keywords=['fluent', 'localization', 'l10n'],
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: Apache Software License',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3.5',
|
|
],
|
|
packages=['fluent', 'fluent.syntax'],
|
|
# These should also be duplicated in tox.ini and ../.travis.yml
|
|
tests_require=['six'],
|
|
test_suite='tests.syntax'
|
|
)
|