-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.15 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
import codecs
import os
with open("README.md","r") as fh:
long_desc = fh.read()
setup(
name='Texo',
version='0.0.4',
description='Sentiment Analysis Multiple language and for all products',
author='Sourabh singh',
author_email='[email protected]',
long_description=long_desc,
long_description_content_type = "text/markdown",
package_dir={'':'src'},
url='https://github.com/Sourabh20022002/Texo',
download_url = 'https://github.com/Sourabh20022002/Texo/archive/refs/tags/python.tar.gz',
packages=['Texo'],
install_requires=[
'transformers',
'translate',
],
keywords=['python', 'Sentiment', 'NLP', 'Tokenizer', 'Text-Analyzer', 'sockets','torch', 'PIL', 'torchvision'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)