]> git.phdru.name Git - m_lib.defenc.git/blob - setup.py
Docs: Fixed minor misspelling
[m_lib.defenc.git] / setup.py
1 #! /usr/bin/env python
2
3 try:
4     from setuptools import setup
5     is_setuptools = True
6 except ImportError:
7     from distutils.core import setup
8     is_setuptools = False
9
10 kw = {}
11 if is_setuptools:
12     kw['python_requires'] = '>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*'
13
14 setup(name = "m_lib.defenc",
15     version = "1.0.0",
16     description = "Get default encoding",
17     long_description = "Get default encoding. A part of Broytman Library for Python, Copyright (C) 1996-2018 PhiloSoft Design",
18     author = "Oleg Broytman",
19     author_email = "phd@phdru.name",
20     url = "http://phdru.name/Software/Python/#m_lib",
21     license = "GPL",
22     classifiers=[
23         'Development Status :: 5 - Production/Stable',
24         'Intended Audience :: Developers',
25         'License :: OSI Approved :: GNU General Public License (GPL)',
26         'Operating System :: OS Independent',
27         'Programming Language :: Python :: 2',
28         'Programming Language :: Python :: 2.6',
29         'Programming Language :: Python :: 2.7',
30         'Programming Language :: Python :: 3',
31         'Programming Language :: Python :: 3.4',
32         'Programming Language :: Python :: 3.5',
33         'Programming Language :: Python :: 3.6',
34         'Topic :: Software Development :: Libraries',
35         'Topic :: Software Development :: Libraries :: Python Modules',
36     ],
37     platforms = "Any",
38     packages = ["m_lib"],
39     namespace_packages = ["m_lib"],
40     **kw
41 )