-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (21 loc) · 1.04 KB
/
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
import codecs
from setuptools import setup
from setuptools import find_packages
with codecs.open('README.md', 'r', 'utf8') as reader:
long_description = reader.read()
setup(
name = 'wikistats2csv',
version = '0.1.6',
license = 'MIT',
author = 'Saied Alshahrani',
author_email = '[email protected]',
packages = find_packages(),
description='Wikistats-to-CSV downloads Wikipedia Statistics in CSV format for a given Wikipedia.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/SaiedAlshahrani/Wikistats-to-CSV',
keywords = ['wikipedia','statistics', 'wikimedia', 'csv'],
install_requires = ['lxml==4.9.1', 'rich==12.5.1', 'numpy==1.23.2', 'pandas==1.4.3','selenium==3.141.0', 'geckodriver-autoinstaller==0.1.0'],
entry_points = {'console_scripts':['wikistats2csv = wikistats2csv.wikistats2csv:main']},
classifiers = ['Programming Language :: Python :: 3', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent']
)