-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 826 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 826 Bytes
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
# Copyright (c) 2020. Stephen R. Ouellette
from setuptools import setup, find_packages
from os import path
from io import open
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='CoronaVirusChatBot',
version='1.0.0',
packages=find_packages(where='src'),
url='',
license='',
author='Stephen R Ouellette',
author_email='Stephen.r.ouellette@gmail.com',
description='COVID-19 Virus chat bot',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Instructors',
'Topic :: Artificial Intelligence :: COVID-19',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
python_requires='>=3.6',
)