Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekk728 committed Dec 3, 2020
1 parent 72ad738 commit 5df1a8d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
11 changes: 11 additions & 0 deletions fyle/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""
Initializing Fyle SDK
"""

from .fyle import platform

__all__ = [
platform
]

name = "fyle"
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
long_description = f.read()

setuptools.setup(
name='fyle-platform-sdk-py',
version='0.0.4-beta',
name='fyle',
version='0.0.6-beta',
author='Siva Narayanan',
author_email='[email protected]',
description='Python SDK for accessing Fyle Platform APIs',
Expand All @@ -14,10 +14,9 @@
long_description_content_type='text/markdown',
keywords=['fyle', 'api', 'python', 'sdk'],
url='https://github.com/fylein/fyle-platform-sdk-py',
include_package_data=True,
packages=setuptools.find_packages(),
package_data={
'fyle': ['*']
package_dir={
'': 'fyle',
},
install_requires=[
'enum34==1.1.10',
Expand Down

0 comments on commit 5df1a8d

Please sign in to comment.