Python/Distribution: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 12: | Line 12: | ||
author_email='[email protected]', | author_email='[email protected]', | ||
maintainer_email='[email protected]', | maintainer_email='[email protected]', | ||
license='Python Software Foundation License (PSFL)', | |||
description='Enterprise Business Intelligence Suite', | description='Enterprise Business Intelligence Suite', | ||
url='http://cdn.chorke.org/docs/academia/chorke-init-launch', | url='http://cdn.chorke.org/docs/academia/chorke-init-launch', | ||
# packages=['distutils', 'distutils.command'], | # packages=['distutils', 'distutils.command'], | ||
package_dir= { | package_dir= { |
Revision as of 01:46, 5 February 2019
setup.py
#!/usr/bin/env python
from distutils.core import setup
setup(
name='launch',
version='1.0.00.GA',
maintainer='Chorke, Inc.',
author='Chorke Academia, Inc.',
author_email='[email protected]',
maintainer_email='[email protected]',
license='Python Software Foundation License (PSFL)',
description='Enterprise Business Intelligence Suite',
url='http://cdn.chorke.org/docs/academia/chorke-init-launch',
# packages=['distutils', 'distutils.command'],
package_dir= {
'': 'lib'
},
requires={
},
classifiers=[
'Environment :: Console',
'Topic :: Office/Business',
'Operating System :: POSIX',
'Development Status :: 3.0.00',
'Environment :: Web Environment',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Topic :: Communications :: Email',
'Operating System :: MacOS :: MacOS X',
'Intended Audience :: End Users/Desktop',
'Operating System :: Microsoft :: Windows',
'Intended Audience :: System Administrators',
'Topic :: Software Development :: Bug Tracking',
'License :: OSI Approved :: Python Software Foundation License',
],
)