-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (29 loc) · 892 Bytes
/
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
26
27
28
29
30
31
32
33
#!/use/bin/env python
from distutils.core import setup
def readme():
with open('README.rst') as f:
contents = f.read()
return contents
setup(
name='uspto_tools',
version='1.0',
author='Rickard Sjögren',
author_email='[email protected]',
license='MIT',
url='https://github.com/clicumu/uspto-tools',
description=('A simple Python package for fetching and '
'retrieval of USPTO patents'),
long_description=readme(),
package_dir = {
'uspto_tools': 'uspto_tools',
'uspto_tools.fetch': 'uspto_tools/fetch',
'uspto_tools.parse': 'uspto_tools/parse'
},
packages=['uspto_tools', 'uspto_tools.parse', 'uspto_tools.fetch'],
scripts=['scripts/bulk_download.py'],
keywords='python uspto patents textanalysis',
install_requires=[
'beautifulsoup4',
'requests',
]
)