-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 719 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (19 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name = 'GooglePatentsPdfDownloader',
version = '0.1.0',
description = 'Download patents as PDF documents from Google Patents',
long_description = readme,
author = 'Lorenz Brachtendorf',
author_email = 'lorenz.brachtendorf@gmx.de',
url = 'https://github.com/lorenzbr/GooglePatentsPdfDownloader',
license = license,
packages = find_packages(exclude = ('tests', 'docs')),
install_requires = ['requests', 'bs4', 'pandas', 'selenium', 'numpy'],
package_data = {'docs/data': ['patents.txt']},
include_package_data = True
)