{"worksheets": [{"metadata": {}, "cells": [{"cell_type": "code", "collapsed": false, "outputs": [], "input": ["import sys\n", "try:\n", " from setuptools import setup <1>\n", " have_setuptools = True\n", "except ImportError:\n", " from distutils.core import setup <2>\n", " have_setuptools = False\n", "\n", "setup_kwargs = { <3>\n", " 'name': 'compphys',\n", " 'version': '0.1',\n", " 'description': 'Effective Computation in Physics',\n", " 'author': 'Anthony Scopatz and Kathryn D. Huff',\n", " 'author_email': '
[email protected]',\n", " 'url': 'http://www.oreilly.com/',\n", " 'classifiers': [\n", " 'License :: OSI Approved',\n", " 'Intended Audience :: Developers',\n", " 'Programming Language :: Python :: 3',\n", " ],\n", " 'zip_safe': False,\n", " 'packages': ['compphys', 'compphys.more'],\n", " 'package_dir': {\n", " 'compphys': 'compphys', \n", " 'compphys.more': 'compphys/more', \n", " },\n", " 'data_files': [('compphys/raw', ['*.txt'])],\n", " }\n", "\n", "if __name__ == '__main__':\n", " setup(**setup_kwargs) <4>"], "metadata": {}, "language": "python", "prompt_number": 1}]}], "nbformat": 3, "nbformat_minor": 0, "metadata": {"name": "", "signature": "sha256:3561e4764b9d4d876b3c052c79736e7937323ccc76711946a633f79dbd9dd501"}}
0 commit comments