-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.32 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
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'License :: Freeware',
'Operating System :: MacOS :: MacOS X',
'Topic :: Education',
'Operating System :: POSIX'
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: Microsoft :: Windows :: Windows 8.1',
'Operating System :: Microsoft :: Windows :: Windows 8',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8'
]
setup(
name='vtrans',
version='3.0.0',
description='This is a self-updating translator for free and unlimited usage with upto 130 langauges',
long_description=open('README.md',"r",encoding="utf-8").read(),
long_description_content_type='text/markdown',
url='https://github.com/MegalosVigneswaran/vtrans/',
author='S.Vigneswaran',
author_email='contactmevigneswaran@gmail.com',
license='MIT',
classifiers=classifiers,
keywords=['translator', 'googletranslate', 'self-updating', 'googletrans'],
packages=find_packages(),
package_data={
'vtrans': ['config.txt'],
},
install_requires=['googletrans==3.1.0a0', 'pandas', 'requests', 'beautifulsoup4', 'astor']
)