-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
31 lines (29 loc) · 1.03 KB
/
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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='lawpy',
version='0.1',
description='Pythonic interface to legal and political APIs, including courtlistener, propublica, opensecrets, others',
long_description=readme(),
url='https://github.com/paultopia/lawpy',
classifiers=[
'Development Status :: 3 - Alpha',
"Intended Audience :: Developers",
"Intended Audience :: Legal Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only"
],
keywords="law, courtlistener, cases, court, congress, politics, propublica, opensecrets, campaignfinance",
author='Paul Gowder',
author_email='[email protected]',
license='MIT',
packages=['lawpy'],
install_requires=[
'requests',
'html2text',
'pandas'
],
python_requires='>=3',
zip_safe=False)