Python/Distribution

From Chorke Wiki
Revision as of 01:46, 5 February 2019 by Shahed (talk | contribs) (→‎setup.py)
Jump to navigation Jump to search

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',
    ],
)

setup.cfg

References