-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.33 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
from setuptools import setup
def get_readme():
with open('README.rst', encoding='UTF-8') as readme:
return readme.read()
setup(name='translatify',
version='1.0.1',
description='A fun tool to convert text into different languages using '
'Google Translate',
long_description=get_readme(),
license='MIT',
author='Encrylize',
author_email='[email protected]',
url='https://github.com/Encrylize/translatify',
keywords=['translatify', 'google-translate', 'translate'],
classifiers=['License :: OSI Approved :: MIT License',
'Topic :: Utilities',
'Topic :: Games/Entertainment',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Other Audience',
'Development Status :: 4 - Beta',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
'Natural Language :: English'],
install_requires=['googletrans'],
packages=['translatify'],
entry_points='''
[console_scripts]
translatify=translatify.translatify:main
''')