-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 764 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 764 Bytes
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
from setuptools import setup
setup(
name='dhs_scraper',
version='0.2.0',
description='A Scraper for the Historical Dictionary of Switzerland (DHS)',
url='https://github.com/dddpt/dhs-scraper',
author='Didier Dupertuis',
license='Apache License 2.0',
packages=['dhs_scraper'],
install_requires=[
'requests>=2.22.0',
'lxml>=4.5.0',
'pandas>=1.3.3'
],
setup_requires=['wheel'],
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
)