-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 876 Bytes
/
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
from setuptools import setup
setup(
name='Deutsche_WS',
version='0.1.0',
description='Simple application to learn new fr/ge vocabulary',
url='https://github.com/MilaimKas/Learn_vocab',
author='Milaim Kas',
author_email='milaim.kas@gmail.com',
license='MIT License',
packages=['Deutsche_WS'],
install_requires=['PySimpleGUI',
'tabulate',
'googletrans',
'mlconjug3',
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: All',
'License :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.9'
],
)