27 lines
1.5 KiB
Python
27 lines
1.5 KiB
Python
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
|
|
'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
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Programming Language :: Python :: 3.7',
|
|
'Programming Language :: Python :: 3.8',
|
|
'Programming Language :: Python :: 3.9',
|
|
],
|
|
)
|