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
|
#!/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'
)
|