]> git.phdru.name Git - m_lib.defenc.git/blob - setup.py
Add release scripts
[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     keywords=[''],
17     classifiers=[
18         'Development Status :: 5 - Production/Stable',
19         'Intended Audience :: Developers',
20         'License :: OSI Approved :: GNU General Public License (GPL)',
21         'Operating System :: OS Independent',
22         'Programming Language :: Python :: 2',
23         'Programming Language :: Python :: 2.6',
24         'Programming Language :: Python :: 2.7',
25         'Programming Language :: Python :: 3',
26         'Programming Language :: Python :: 3.4',
27         'Programming Language :: Python :: 3.5',
28         'Programming Language :: Python :: 3.6',
29         'Topic :: Software Development :: Libraries',
30         'Topic :: Software Development :: Libraries :: Python Modules',
31     ],
32     platforms = "All",
33     packages = ["m_lib"],
34     namespace_packages = ["m_lib"],
35 )