-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
30 lines (28 loc) · 891 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
29
30
from setuptools import setup, find_packages
setup(
name='Dictmaster',
version='0.1',
description='Downloading and converting dictionaries from the web',
url='https://framagit.org/tuxor1337/dictmaster',
author='Thomas Vogt',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Topic :: Internet',
],
keywords='dictionary language download',
packages=find_packages(),
package_data={'': ['*.glade']},
install_requires=[
"pyquery",
"beautifulsoup4",
"jinja2",
"lxml",
"html5lib",
"pyglossary",
],
scripts=["bin/dictmaster"],
project_urls={ 'Source': 'https://framagit.org/tuxor1337/dictmaster', },
)