-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (40 loc) · 1.45 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
40
41
42
43
44
45
"""
rurecoder
--------
Tool for coding fix.
Description:
- When downloaded, html pages are often incorrectly decoded. For example, CP1251 page can be interpreted as ISO8859 page.
Features:
- Supports only Cyrillic at the moment.
"""
from setuptools import setup, find_packages
setup(
name='rurecoder',
version='0.3.1',
author='David Kuryakin',
author_email='[email protected]',
url='https://github.com/zvezdochiot/python-rurecoder',
download_url = 'https://github.com/zvezdochiot/python-rurecoder/get/master.tar.gz',
license='mit',
description='Tool (and lib) for coding fix.',
keywords=['cyrillic', 'encoding', 'coding', 'fix', 'decoder', 'recoder', 'i18n'],
long_description=open('README.rst', 'rb').read().decode('utf-8'),
test_suite = "rurecoder.tests",
packages=['rurecoder', 'rurecoder.cyrillic', 'rurecoder.builder'],
include_package_data=True,
package_data={'rurecoder': ['*.json']},
scripts=['bin/rurecoder'],
zip_safe=False,
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Text Processing :: Linguistic',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)