-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (27 loc) · 879 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
#!/usr/bin/env python
from setuptools import find_packages
from setuptools import setup # type: ignore
setup(
name='heb_vaccine',
version='0.1.0',
url='https://github.com/oldarmyc/vaccine_appointments',
license='Apache License, Version 2.0',
author='Dave Kludt',
author_email='oldarmyc@gmail.com',
description='Python library to assist with Covid19 HEB appointments',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=['requests'],
python_requires='>=3.6',
entry_points={
'console_scripts': ['heb-vaccine=heb_vaccine.schedule:main']
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python'
]
)