gptc/setup.py

27 lines
810 B
Python
Raw Normal View History

2020-03-16 10:57:15 -07:00
from distutils.core import setup
setup(
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=[
2020-03-16 10:57:15 -07:00
'spacy',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
2020-03-16 10:57:15 -07:00
'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',
],
)