-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 764 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 764 Bytes
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
from setuptools import setup
setup(
name='deeplcmd',
description="DeepLCMD is a simple command line app for text and document translation with Deepl Translator API ",
long_description=open("README.md", 'r', encoding='utf8').read(),
long_description_content_type='text/markdown',
url="https://github.com/ilya-smut/deeplcmd",
project_urls={
"Source Code": "https://github.com/ilya-smut/deeplcmd",
},
author="Ilya Smut",
author_email="ilya.smut.off.g@gmail.com",
license="GPL-3.0 license",
version='0.1.4',
packages=['deeplcmd'],
install_requires=[
'Click',
'Deepl'
],
entry_points={
'console_scripts': [
'deeplcmd = deeplcmd.deeplcmd:init',
],
},
)