forked from suyashb95/WiktionaryParser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 945 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
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 = ['wiktionaryparser', 'tests'],
data_files=[('testOutput', ['tests/testOutput.json']), ('readme', ['readme.md']), ('requirements', ['requirements.txt'])],
author = 'Suyash Behera',
author_email = '[email protected]',
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',
'License :: OSI Approved :: MIT License',
],
)