forked from suyashb95/WiktionaryParser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 892 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup,find_packages
with open('readme.md', 'r') as readme:
long_desc = readme.read()
setup(
name = 'wiktionaryparser',
version = '0.0.96',
description = 'A tool to parse word data from wiktionary.com into a JSON object',
long_description = long_desc,
long_description_content_type='text/markdown',
packages = ['', 'tests', 'utils'],
data_files=[('testOutput', ['tests/testOutput.json']), ('readme', ['readme.md']), ('requirements', ['requirements.txt'])],
author = 'Suyash Behera',
author_email = 'sne9x@outlook.com',
url = 'https://github.com/Suyash458/WiktionaryParser',
download_url = 'https://github.com/Suyash458/WiktionaryParser/archive/master.zip',
keywords = ['Parser', 'Wiktionary'],
install_requires = ['beautifulsoup4','requests'],
classifiers=[
'Development Status :: 5 - Production/Stable',
],
)