-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 1014 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 1014 Bytes
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
from setuptools import setup # type: ignore
setup(
name="python-i18n",
version="0.3.9",
description="Translation library for Python",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Daniel Perez",
author_email="tuvistavie@gmail.com",
url="https://github.com/tuvistavie/python-i18n",
download_url="https://github.com/tuvistavie/python-i18n/archive/master.zip",
license="MIT",
packages=["i18n", "i18n.loaders", "i18n.tests"],
include_package_data=True,
zip_safe=True,
test_suite="i18n.tests",
extras_require={
"YAML": ["pyyaml>=3.10"],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
],
)