Browse Source

Remove the comments from the setup.py template I used

master
scoopgracie 4 years ago
parent
commit
15bc52e9e6
  1. 28
      setup.py

28
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',

Loading…
Cancel
Save