-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from codePerfectPlus/type-check
type checking enabled
- Loading branch information
Showing
4 changed files
with
16 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .main import RandomProfile | ||
from audiobook.main import RandomProfile | ||
import argparse | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,31 +5,25 @@ | |
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
# Here is the module name. | ||
name="random_profile", | ||
# version of the module | ||
version="1.0.0", | ||
# Name of Author | ||
author="Deepak Raj", | ||
# your Email address | ||
author_email="[email protected]", | ||
# Small Description about module | ||
description="Generate Random Profile", | ||
long_description=long_description, | ||
# Specifying that we are using markdown file for description | ||
long_description_content_type="text/markdown", | ||
# Any link to reach this module, if you have any webpage or github profile | ||
data_files=[('assets', glob('random_profile/assets/*'))], | ||
url="https://github.com/codePerfectPlus/Random-Profile-Generator", | ||
packages=setuptools.find_packages(), | ||
# classifiers like program is suitable for python3, just leave as it is. | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: Utilities", | ||
], | ||
"Environment :: Plugins"], | ||
entry_points={ | ||
"console_scripts": ["random_profile = random_profile.__main__:main"], | ||
}, | ||
|