forked from trisongz/vaccinewatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (43 loc) · 1.29 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
import os, sys
import os.path
from setuptools import setup, find_packages
root = os.path.abspath(os.path.dirname(__file__))
package_name = "vaccinewatcher"
packages = find_packages(
include=[package_name, "{}.*".format(package_name)]
)
__version_info__ = (0, 0, 1)
version = ".".join(map(str, __version_info__))
binary_names = ['vaccinewatcher']
with open(os.path.join(root, 'README.md'), 'rb') as readme:
long_description = readme.read().decode('utf-8')
setup(
name=package_name,
version=version,
description="Monitor Vaccine Availability from your Local CVS and Walgreens (US Only).",
long_description=long_description,
long_description_content_type="text/markdown",
author='Tri Songz',
author_email='[email protected]',
url='http://github.com/trisongz/vaccinewatcher',
python_requires='>3.6',
install_requires=[
"selenium",
"selenium-wire",
"undetected-chromedriver",
"elemental"
],
packages=packages,
entry_points={
"console_scripts": [
"vaccinewatcher = vaccinewatcher.watcher:cli",
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
],
data_files=[],
include_package_data=True
)