-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (30 loc) · 1008 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
from setuptools import setup, find_packages
setup(
name='corona19-notification',
version='1.0',
author='occidere',
author_email='[email protected]',
url='https://github.com/occidere/corona19-notification',
description='No Description',
license='Apache 2.0',
install_requires=[
'requests',
'line-bot-sdk',
'pyyaml',
'setuptools',
'beautifulsoup4'
],
packages=find_packages(exclude=['venv', 'doc', 'test']),
python_requires='>=3.5',
package_data={
'resources': ['resources/*']
},
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)