-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.12 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
35
36
37
38
39
#!/usr/bin/env python
from setuptools import setup
setup(
name="fluent.migrate",
version="0.13.3",
description="Toolchain to migrate legacy translation to Fluent.",
author="Mozilla",
author_email="[email protected]",
license="APL 2",
url="https://github.com/mozilla/fluent-migrate",
keywords=["fluent", "localization", "l10n"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
packages=["fluent", "fluent.migrate"],
install_requires=[
"compare-locales >=9.0.1, <10.0",
"fluent.syntax >=0.19.0, <0.20",
],
extras_require={
"hg": [
"python-hglib",
],
},
tests_require=[
"mock",
],
test_suite="tests.migrate",
)