Skip to content

Commit

Permalink
Fix package config and re-release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Holvey committed Jan 2, 2021
1 parent 1fc10e6 commit 8ed8b70
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name='sharepy',
version='2.0.0-beta.1',
version='2.0.0-beta.1-2',
description='Simple SharePoint Online authentication for Python',
long_description=long_description,
long_description_content_type='text/markdown',
Expand All @@ -31,9 +31,9 @@
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
],
packages=find_packages(),
package_dir={'': 'src'},
package_data={'sharepy.auth': ['templates/*']},
packages=find_packages('./src'),
package_dir={'': './src'},
package_data={'sharepy.auth.templates': ['*']},
python_requires='>=3.6, <4',
install_requires=['requests>=2,<3']
)

0 comments on commit 8ed8b70

Please sign in to comment.