Skip to content

Instantly share code, notes, and snippets.

@wynnzen
Created May 13, 2014 01:46
Show Gist options
  • Save wynnzen/56af7045a66fa569efac to your computer and use it in GitHub Desktop.
Save wynnzen/56af7045a66fa569efac to your computer and use it in GitHub Desktop.
setup的demo
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
try:
from distutils.command.build_py import build_py_2to3 as build_py
except ImportError:
# 2.x
from distutils.command.build_py import build_py
setup(name="androidpy",
version="1.0.0",
author="oliverhuang",
author_email='oliverhuang@yahoo.com',
url="",
download_url="",
long_description="""sl4a rpc script""",
license="GPLv2",
packages=['androidpy'],
cmdclass={'build_py': build_py}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment