-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
55 lines (51 loc) · 1.54 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import os
from setuptools import setup, find_packages
# Setup Script for pip Or manually install via the command line with python setup.py install
# The directory containing this file.
WORK_DIR = os.path.dirname(os.path.abspath(__file__))
# The text of the README file.
README = os.path.join(WORK_DIR, 'README.md')
with open(README, 'r', encoding='utf8') as f:
long_description = f.read()
setup(
name='polipy',
version='0.1.4',
description='Library for scraping, parsing, and analyzing privacy policies.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/blues-lab/polipy',
author='Berkeley Lab for Usable and Experimental Security (BLUES)',
author_email='blues@berkeley.edu',
license='GNU General Public License v3.0 (GPLv3)',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9'
],
packages=find_packages(),
include_package_data=False,
install_requires=[
'beautifulsoup4',
'certifi',
'cffi',
'chardet',
'cryptography',
'filelock',
'idna',
'pdfminer.six',
'pycparser',
'requests',
'requests-file',
'selenium',
'six',
'sortedcontainers',
'soupsieve',
'tqdm',
'urllib3'
],
entry_points={
'console_scripts': [
'polipy=polipy.__main__:main',
]
},
)