From 15bc52e9e67110d4e4fff0d16a33224dd86b518d Mon Sep 17 00:00:00 2001 From: scoopgracie Date: Fri, 14 Aug 2020 16:17:27 -0700 Subject: [PATCH] Remove the comments from the setup.py template I used --- setup.py | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/setup.py b/setup.py index e03cf34..d4ac61f 100644 --- a/setup.py +++ b/setup.py @@ -1,22 +1,22 @@ from distutils.core import setup setup( - name = 'gptc', # How you named your package folder (MyLib) - packages = ['gptc'], # Chose the same as "name" - version = '2.0.0a', # Start with a small number and increase it with every change you make - license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository - description = 'General-purpose English text classifier', # Give a short description about your library - author = 'ScoopGracie', # Type in your name - author_email = 'scoopgracie@scoopgracie.com', # Type in your E-Mail - url = 'https://github.com/scoopgracie/gptc', # Provide either the link to your github or to your website - keywords = ['nlp', 'text', 'classification'], # Keywords that define your package best - install_requires=[ # I get to this in a second + name = 'gptc', + packages = ['gptc'], + version = '2.0.0a', + license='MIT', + description = 'General-purpose English text classifier', + author = 'ScoopGracie', + author_email = 'scoopgracie@scoopgracie.com', + url = 'https://github.com/scoopgracie/gptc', + keywords = ['nlp', 'text', 'classification'], + install_requires=[ 'spacy', ], classifiers=[ - 'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package - 'Intended Audience :: Developers', # Define that your audience are developers - 'License :: OSI Approved :: MIT License', # Again, pick a license - 'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7',