Last active
October 29, 2015 21:52
-
-
Save lukedeo/788a6b58cdf4dbf26af4 to your computer and use it in GitHub Desktop.
Setuptools Boilerplate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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='[email protected]', | |
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