File tree Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Original file line number Diff line number Diff line change 37
37
job_titles = load_txt_file (job_titles_txt )
38
38
39
39
40
- class RandomProfile :
40
+ class RandomProfile ( object ) :
41
41
def __init__ (self , num : int = 1 ):
42
42
'''
43
43
num = Total No. of Name You Want To Print
Original file line number Diff line number Diff line change 5
5
long_description = fh .read ()
6
6
7
7
setuptools .setup (
8
- # Here is the module name.
9
8
name = "random_profile" ,
10
- # version of the module
11
9
version = "1.0.0" ,
12
- # Name of Author
13
10
author = "Deepak Raj" ,
14
- # your Email address
15
11
16
- # Small Description about module
17
12
description = "Generate Random Profile" ,
18
13
long_description = long_description ,
19
- # Specifying that we are using markdown file for description
20
14
long_description_content_type = "text/markdown" ,
21
- # Any link to reach this module, if you have any webpage or github profile
22
15
data_files = [('assets' , glob ('random_profile/assets/*' ))],
23
16
url = "https://github.com/codePerfectPlus/Random-Profile-Generator" ,
24
17
packages = setuptools .find_packages (),
25
- # classifiers like program is suitable for python3, just leave as it is.
26
18
classifiers = [
27
19
"Programming Language :: Python :: 3" ,
28
20
"License :: OSI Approved :: MIT License" ,
You can’t perform that action at this time.
0 commit comments