-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.1 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.1 KB
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
31
32
33
34
35
36
37
38
from setuptools import setup, find_packages
# Dynamically fetch version and requirements as before
import os
# Dynamically read the version from your package/module
from wikiparser import __version__ as version
# Read requirements from requirements.txt
requires = [
"lxml",
"mwparserfromhell",
"tqdm",
"requests",
"datasets"
]
setup(
name='simple-wikiparser',
version=version,
packages=find_packages(),
description='A simple Wikipedia parser',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Biswajit Satapathy',
author_email='biswajit2902@gmail.com',
url='https://github.com/biswajit2903/SimpleWikiParser',
license='Apache License 2.0',
install_requires=requires,
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
python_requires='>=3.8',
include_package_data=True
)