“Pengantar distutils di Python” Kode Jawaban

Pengantar distutils di Python

distutils:$ runner
module is running
/usr/lib/python2.4/site-packages/package
My various data files and so on are:
['cross.png', 'fplogo.png', 'tick.png']
Shy Skunk

Pengantar distutils di Python

top
|-- package
|   |-- __init__.py
|   |-- module.py
|   `-- things
|       |-- cross.png
|       |-- fplogo.png
|       `-- tick.png
|-- runner
|-- MANIFEST.in
|-- README
`-- setup.py
Shy Skunk

Pengantar distutils di Python

distutils:$ python setup.py sdist upload
Shy Skunk

Pengantar distutils di Python

include runner README
recursive-include package/things *
Shy Skunk

Pengantar distutils di Python

cd dist
tar xzf appname-100.tar.gz 
cd appname-100
sudo python setup.py install
password:######
running install
running build
running build_py
running build_scripts
running install_lib
running install_scripts
changing mode of /usr/bin/runner to 755
Shy Skunk

Pengantar distutils di Python

include fontypython fp README COPYING
recursive-include fontypythonmodules/pofiles *
recursive-include fontypythonmodules/things *
recursive-include fontypythonmodules/locale *
recursive-include fontypythonmodules/help *
Shy Skunk

Pengantar distutils di Python

classifiers=[
      'Development Status :: 4 - Beta',
      'Environment :: X11 Applications :: GTK',
      'Intended Audience :: End Users/Desktop',
      'Intended Audience :: Developers',
      'License :: OSI Approved :: GNU General Public License (GPL)',
      'Operating System :: POSIX :: Linux',
      'Programming Language :: Python',
      'Topic :: Desktop Environment',
      'Topic :: Text Processing :: Fonts'
      ]
Shy Skunk

Pengantar distutils di Python

##This will work in development on a relative folder basis
##It will then work when installed in site-packages on a target system
##where the runner script is in /usr/bin (or wherever)
##
##So, you don't need anything special - no fancy path tricks.

import package.module

package.module.start ()
Shy Skunk

Pengantar distutils di Python

python setup.py sdist
Shy Skunk

Pengantar distutils di Python

distutils:$ python setup.py sdist upload --sign
Shy Skunk

Jawaban yang mirip dengan “Pengantar distutils di Python”

Pertanyaan yang mirip dengan “Pengantar distutils di Python”

Lebih banyak jawaban terkait untuk “Pengantar distutils di Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya