-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (28 loc) · 814 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
34
from setuptools import setup
with open("README.md", 'r') as f:
long_description = f.read()
project_name = "covid"
git_url = "https://github.com/lwashington3/COVID.py"
setup(
name="COVID Data Scraper",
version="1.1.3",
author="Len Washington III",
author_email="[email protected]",
description="Daily Corona Scraper from the Illinois Department of Public Health",
include_package_data=True,
long_description=long_description,
long_description_content_type="test/markdown",
url=git_url,
project_urls={
"Bug Tracker": f"{git_url}/issues"
},
license="MIT",
packages=[project_name],
install_requires=["mysql-connector-python"],
entry_points={
"console_scripts": [f"{project_name}={project_name}.command_line:main"]
},
classifiers=[
"Programming Language :: Python :: 3.10"
]
)