-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (24 loc) · 867 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
# Copyright (c) 2018-2020 Floyd Terbo
from distutils.core import setup
import setuptools
setup(name = "scotus-tools",
version = "0.9.52",
author = "Floyd Terbo",
author_email = "[email protected]",
packages = setuptools.find_packages(),
install_requires = [
"BeautifulSoup",
"pathos",
"PyPDF2",
"python-dateutil",
"requests",
],
zip_safe = False,
scripts = ['tools/ordergrab', 'tools/docketgrab',
'tools/orderparse', 'tools/docketindexer',
'tools/docketsearch', 'tools/opiniongrab',
'tools/opinionindexer', 'tools/opinionsearch',
'tools/scotusstats', 'tools/docketsummary',
'tools/analysis-engine', 'tools/argumentrss',
'tools/docketlegacy', 'tools/transcriptgrab']
)