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