Skip to content

Commit

Permalink
setting consistency with py
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephanie Kirmer committed Jul 15, 2020
1 parent 4c76898 commit 92f38ed
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions radlibs-py/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '[email protected]',
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='[email protected]',
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",
])

0 comments on commit 92f38ed

Please sign in to comment.