forked from mirrors/gecko-dev
29 lines
1.1 KiB
Python
Executable file
29 lines
1.1 KiB
Python
Executable file
#!/usr/bin/env python
|
|
from setuptools import setup
|
|
import os
|
|
|
|
this_directory = os.path.abspath(os.path.dirname(__file__))
|
|
with open(os.path.join(this_directory, 'README.rst'), 'rb') as f:
|
|
long_description = f.read().decode('utf-8')
|
|
|
|
setup(name='fluent.syntax',
|
|
description='Localization library for expressive translations.',
|
|
long_description=long_description,
|
|
long_description_content_type='text/x-rst',
|
|
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 /.github/workflow/fluent.syntax.yml
|
|
tests_require=['six'],
|
|
test_suite='tests.syntax'
|
|
)
|