Python3 setup.py

  • Code:
import setuptools
File = ['./Desktop/std']			# Your directory of file
setuptools.setup(
	name = 'std',					# module name
	version = '19.0.1',				# module version
	author = "Somebody",
	author_email = "Whatever",
	url = "Whatever",
	license = "MIT"
	long_description = """
		Descripton to the module.
	"""
  • Usage:
    python -m pip install *** or easy_install ***

你可能感兴趣的:(Python3 setup.py)