Skip to content

Instantly share code, notes, and snippets.

@sean-mcclure
Last active September 17, 2021 01:55
Show Gist options
  • Save sean-mcclure/f9aa79347375aa5af91bc672c2eaf3b5 to your computer and use it in GitHub Desktop.
Save sean-mcclure/f9aa79347375aa5af91bc672c2eaf3b5 to your computer and use it in GitHub Desktop.
Final setup.py File for Example Python Library
from setuptools import setup
setup(name='datapeek',
version='0.1',
description='A simple library for dealing with raw data.',
url='https://github.com/sean-mcclure/datapeek_py',
author='Sean McClure',
author_email='sean.mcclure@example.com',
license='MIT',
packages=['datapeek'],
install_requires=[
'fuzzywuzzy',
'pandas'
],
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
zip_safe=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment