Skip to content

Commit

Permalink
fix module package
Browse files Browse the repository at this point in the history
  • Loading branch information
cwendt94 committed Apr 25, 2020
1 parent c989d90 commit 5d6478b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
from setuptools import setup
from setuptools import setup, find_packages

setup(
name='espn_api',
packages=['espn_api'],
packages=find_packages(),
version='0.2.0',
author='Christian Wendt',
description='ESPN API',
install_requires=['requests>=2.0.0,<3.0.0'],
setup_requires=['nose>=1.0'],
test_suite='nose.collector',
tests_require=['nose', 'requests_mock', 'coverage'],
url='https://github.com/cwendt94/ff-espn-api',
url='https://github.com/cwendt94/espn-api',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit 5d6478b

Please sign in to comment.