forked from stevenmirabito/balance-check
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (30 loc) · 863 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
import os
from setuptools import setup, find_packages
# this sets __version__
# via: http://stackoverflow.com/a/7071358/87207
# and: http://stackoverflow.com/a/2073599/87207
with open(os.path.join("balance_check", "version.py"), "rb") as f:
exec(f.read())
requirements = [
"beautifulsoup4",
"black",
"Cerberus",
"colorlog",
"luhn",
"pre-commit",
"python3-anticaptcha",
"requests",
"tqdm",
]
setup(
name="balance_check",
version=__version__,
description="Check gift card balances for a variety of providers",
url="http://github.com/stevenmirabito/balance_check",
author="Steven Mirabito",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
entry_points={"console_scripts": ["balance-check=balance_check.cli:main"]},
install_requires=requirements,
)