-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
20 lines (18 loc) · 894 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='pypatent',
version='1.2.0',
description='Search and retrieve USPTO patent data',
url='http://github.com/daneads/pypatent',
author='Dan Eads',
author_email='24708079+daneads@users.noreply.github.com',
license='GNU GPLv3',
classifiers=['Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'Topic :: Internet', 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 'Programming Language :: Python :: 3'],
keywords=['patent', 'uspto', 'scrape', 'scraping'],
packages=['pypatent'],
install_requires=['bs4', 'requests', 'pandas', 'selenium'],
python_requires='>=3',
zip_safe=False,
long_description=long_description,
long_description_content_type='text/markdown')