From 92f38ed33597e723bbad44679640a271f7181df2 Mon Sep 17 00:00:00 2001 From: Stephanie Kirmer Date: Wed, 15 Jul 2020 12:47:44 -0500 Subject: [PATCH] setting consistency with py --- radlibs-py/setup.py | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/radlibs-py/setup.py b/radlibs-py/setup.py index c84d81d..f26daf0 100644 --- a/radlibs-py/setup.py +++ b/radlibs-py/setup.py @@ -3,19 +3,19 @@ from setuptools import setup -setup(name = 'radlibs', - version = '0.2.0', - description = 'Build Your Own Madlibs!', - author = 'Stephanie Kirmer', - author_email = 'stephanie@stephaniekirmer.com', - packages = ['radlibs'], - url="https://github.com/skirmer/radlibs-py", - install_requires=['pandas', - 'feather-format'], - package_data={'radlibs': ['data/*.feather']}, - include_package_data=True, - classifiers=[ - "Programming Language :: Python :: 3", - "License :: OSI Approved :: BSD License", - "Operating System :: OS Independent", - ]) +setup(name='radlibs', + version='0.2.0', + description='Build Your Own Madlibs!', + author='Stephanie Kirmer', + author_email='stephanie@stephaniekirmer.com', + packages=['radlibs'], + url="https://github.com/skirmer/radlibs/tree/master/radlibs-py", + install_requires=['pandas', + 'feather-format'], + package_data={'radlibs': ['data/*.feather']}, + include_package_data=True, + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: BSD License", + "Operating System :: OS Independent", + ])