Update setup.py
This commit is contained in:
		
				
					committed by
					
						
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							4659235436
						
					
				
				
					commit
					8964a9b34b
				
			
							
								
								
									
										40
									
								
								setup.py
									
									
									
									
									
								
							
							
						
						
									
										40
									
								
								setup.py
									
									
									
									
									
								
							@@ -6,20 +6,8 @@ from os.path import abspath, dirname, join
 | 
				
			|||||||
README_MD = open(join(dirname(abspath(__file__)), "README.md")).read()
 | 
					README_MD = open(join(dirname(abspath(__file__)), "README.md")).read()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
setup(
 | 
					setup(
 | 
				
			||||||
    # The name of your project that we discussed earlier.
 | 
					    name="trueupdate",
 | 
				
			||||||
    # This name will decide what users will type when they install your package.
 | 
					    version="1.0.0",
 | 
				
			||||||
    # In my case it will be:
 | 
					 | 
				
			||||||
    # pip install pydash-arnu515
 | 
					 | 
				
			||||||
    # This field is REQUIRED
 | 
					 | 
				
			||||||
    name="pydash-arnu515",
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    # The version of your project.
 | 
					 | 
				
			||||||
    # Usually, it would be in the form of:
 | 
					 | 
				
			||||||
    # major.minor.patch
 | 
					 | 
				
			||||||
    # eg: 1.0.0, 1.0.1, 3.0.2, 5.0-beta, etc.
 | 
					 | 
				
			||||||
    # You CANNOT upload two versions of your package with the same version number
 | 
					 | 
				
			||||||
    # This field is REQUIRED
 | 
					 | 
				
			||||||
    version="1.0.1",
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # The packages that constitute your project.
 | 
					    # The packages that constitute your project.
 | 
				
			||||||
    # For my project, I have only one - "pydash".
 | 
					    # For my project, I have only one - "pydash".
 | 
				
			||||||
@@ -29,12 +17,12 @@ setup(
 | 
				
			|||||||
    # If you only have one file, instead of a package,
 | 
					    # If you only have one file, instead of a package,
 | 
				
			||||||
    # you can instead use the py_modules field instead.
 | 
					    # you can instead use the py_modules field instead.
 | 
				
			||||||
    # EITHER py_modules OR packages should be present.
 | 
					    # EITHER py_modules OR packages should be present.
 | 
				
			||||||
    packages=find_packages(exclude="tests"),
 | 
					    packages=find_packages(),
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # The description that will be shown on PyPI.
 | 
					    # The description that will be shown on PyPI.
 | 
				
			||||||
    # Keep it short and concise
 | 
					    # Keep it short and concise
 | 
				
			||||||
    # This field is OPTIONAL
 | 
					    # This field is OPTIONAL
 | 
				
			||||||
    description="A small clone of lodash",
 | 
					    description="An Automatic and Bulk update utility for TrueNAS SCALE Apps",
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # The content that will be shown on your project page.
 | 
					    # The content that will be shown on your project page.
 | 
				
			||||||
    # In this case, we're displaying whatever is there in our README.md file
 | 
					    # In this case, we're displaying whatever is there in our README.md file
 | 
				
			||||||
@@ -51,26 +39,12 @@ setup(
 | 
				
			|||||||
    # The url field should contain a link to a git repository, the project's website
 | 
					    # The url field should contain a link to a git repository, the project's website
 | 
				
			||||||
    # or the project's documentation. I'll leave a link to this project's Github repository.
 | 
					    # or the project's documentation. I'll leave a link to this project's Github repository.
 | 
				
			||||||
    # This field is OPTIONAL
 | 
					    # This field is OPTIONAL
 | 
				
			||||||
    url="https://github.com/arnu515/pydash",
 | 
					    url="https://github.com/truecharts/trueupdate",
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # The author name and email fields are self explanatory.
 | 
					    # The author name and email fields are self explanatory.
 | 
				
			||||||
    # These fields are OPTIONAL
 | 
					    # These fields are OPTIONAL
 | 
				
			||||||
    author_name="arnu515",
 | 
					    author_name="truecharts",
 | 
				
			||||||
    author_email="arnu5152@gmail.com",
 | 
					    author_email="into@truecharts.org",
 | 
				
			||||||
 | 
					 | 
				
			||||||
    # Classifiers help categorize your project.
 | 
					 | 
				
			||||||
    # For a complete list of classifiers, visit:
 | 
					 | 
				
			||||||
    # https://pypi.org/classifiers
 | 
					 | 
				
			||||||
    # This is OPTIONAL
 | 
					 | 
				
			||||||
    classifiers=[
 | 
					 | 
				
			||||||
        "License :: OSI Approved :: MIT License",
 | 
					 | 
				
			||||||
        "Intended Audience :: Developers",
 | 
					 | 
				
			||||||
        "Programming Language :: Python :: 3 :: Only"
 | 
					 | 
				
			||||||
    ],
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    # Keywords are tags that identify your project and help searching for it
 | 
					 | 
				
			||||||
    # This field is OPTIONAL
 | 
					 | 
				
			||||||
    keywords="lodash, string, manipulation",
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # For additional fields, check:
 | 
					    # For additional fields, check:
 | 
				
			||||||
    # https://github.com/pypa/sampleproject/blob/master/setup.py
 | 
					    # https://github.com/pypa/sampleproject/blob/master/setup.py
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user