-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.13 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
from distutils.core import setup
setup(
name="pylocwolowitz",
packages=["pylocwolowitz"],
version='0.10.dev0',
description="Simple localization for web apps with JSON.",
author="Natal Ngetal",
author_email="[email protected]",
url="http://pylocwolowitz.readthedocs.org/en/latest/",
download_url="",
keywords=["i18n", "json"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
],
long_description="""\
Simple localization
-------------------
Pylocwolowitz is a very simple text localization system, meant to be used by
web applications (but can pretty much be used anywhere). Yes, another
localization system.
This version requires Python 2.7 or later.
"""
)