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
|
#!/usr/bin/python3
# vi:se ts=4 sts=4 et ai:
from distutils.core import setup
setup(name='debhello',
version='4.0',
description='Hello Python',
long_description='Hello Python program.',
author='Osamu Aoki',
author_email='osamu@debian.org',
url='http://people.debian.org/~osamu/',
packages=['hello_py'],
package_dir={'hello_py': 'hello_py'},
scripts=['scripts/hello'],
classifiers = ['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
platforms = 'POSIX',
license = 'MIT License'
)
|