forked from hiviah/https-everywhere-checker
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
37 lines (32 loc) · 993 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
34
35
36
37
#!/usr/bin/env python
import os
import sys
from setuptools import setup, find_packages
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
setup(
name='https-everywhere-checker',
version='0.1.0',
description='Rule checker for HTTPS Everywhere',
long_description=readme + '\n\n' + history,
author='Ondrej Mikle',
author_email='[email protected]',
url='https://github.com/hiviah/https-everywhere-checker',
packages=find_packages('src', exclude=('tests',)),
package_dir={'': 'src'},
include_package_data=True,
install_requires=[
"pycurl>=7.19.0",
"lxml>=2.2.3",
"bsdiff4>=1.1.4",
"python-levenshtein>=0.10.2",
"regex>=0.1.20120613",
],
license="GPL3",
keywords='https https-everywhere http security',
entry_points={
'console_scripts': [
'check-https-rules = https_everywhere_checker.check_rules:cli'
],
}
)