]> git.phdru.name Git - ppu.git/blob - setup.py
Feat: create ppu module
[ppu.git] / setup.py
1 #!/usr/bin/env python
2
3 import sys
4
5 try:
6     from setuptools import setup
7 except ImportError:
8     from distutils.core import setup
9
10 setup(name='ppu',
11       version='0.3.2',
12       description='Broytman Portable Python Utilities',
13       long_description=open('README.rst', 'rU').read(),
14       author='Oleg Broytman',
15       author_email='phd@phdru.name',
16       url='http://phdru.name/Software/Python/ppu/',
17       license='GPL',
18       platforms=['any'],
19       keywords=[''],
20       classifiers=[
21           'Development Status :: 4 - Beta',
22           'Environment :: Console',
23           'Environment :: Web Environment',
24           'Intended Audience :: End Users/Desktop',
25           'License :: OSI Approved :: GNU General Public License (GPL)',
26           'Operating System :: OS Independent',
27           'Programming Language :: Python :: 2',
28           'Programming Language :: Python :: 2.7',
29           'Programming Language :: Python :: 3',
30           'Programming Language :: Python :: 3.3',
31           'Programming Language :: Python :: 3.4',
32           'Programming Language :: Python :: 3.5',
33           'Programming Language :: Python :: 3.6',
34       ],
35       packages=['ppu'],
36       scripts=[
37           'scripts/cmp.py', 'scripts/remove-old-files.py', 'scripts/rm.py',
38       ],
39       )