Skip to content

Instantly share code, notes, and snippets.

@lukedeo
Last active October 29, 2015 21:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukedeo/788a6b58cdf4dbf26af4 to your computer and use it in GitHub Desktop.
Save lukedeo/788a6b58cdf4dbf26af4 to your computer and use it in GitHub Desktop.
Setuptools Boilerplate
from setuptools import setup
from setuptools import find_packages
setup(
name='NewPackage',
version='0.0.1',
description='Library for doing a thing.',
author='Luke de Oliveira',
author_email='lukedeo@ldo.io',
url='https://github.com/lukedeo/repo',
install_requires=['pandas'],
packages=find_packages()
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment