forked from DonnchaC/cloudflare-tor-whitelister
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (28 loc) · 935 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
# -*- coding: utf-8 -*-
"""setup.py: setuptools control."""
import io
import os
from setuptools import setup
def read(*names, **kwargs):
return io.open(
os.path.join(os.path.dirname(__file__), *names),
encoding=kwargs.get("encoding", "utf8")
).read()
setup(
name="cloudflare-tor-whitelister",
packages=["cfwhitelist"],
entry_points={
"console_scripts": [
"cloudflare-whitelist = cfwhitelist.whitelist:main",
]},
description="Cloudflare Whitelister allows site owners to explicitly "
"allow Tor users access there site without being impeded by CAPTCHAs ",
long_description=read("README.rst"),
version="0.1.1",
author="Donncha O'Cearbhail",
author_email="[email protected]",
url="https://github.com/DonnchaC/cloudflare-tor-whitelister",
license="GPLv3",
keywords="tor, cloudflare, firewall",
install_requires=['requests'],
)