Python/Distribution: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
(Created page with "* [https://docs.python.org/3.6/distutils/index.html Distributing Python Modules (Legacy version)] * [https://docs.python.org/3/distutils/packageindex.html The Python Package I...")
 
No edit summary
Line 1: Line 1:
==setup.py==
<source lang="python">
#!/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]',
    description='Enterprise Business Intelligence Suite',
    url='http://cdn.chorke.org/docs/academia/chorke-init-launch',
    license='Python Software Foundation License (PSFL)',
    # 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',
    ],
)
</source>
==setup.cfg==
<source lang="python">
</source>
==References==
* [https://docs.python.org/3.6/distutils/index.html Distributing Python Modules (Legacy version)]
* [https://docs.python.org/3.6/distutils/index.html Distributing Python Modules (Legacy version)]
* [https://docs.python.org/3/distutils/packageindex.html The Python Package Index (PyPI)]
* [https://docs.python.org/3/distutils/packageindex.html The Python Package Index (PyPI)]

Revision as of 01:45, 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]',
    description='Enterprise Business Intelligence Suite',
    url='http://cdn.chorke.org/docs/academia/chorke-init-launch',
    license='Python Software Foundation License (PSFL)',
    # 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