-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 loc) · 1.4 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fp:
long_description = fp.read()
with open("requirements.txt", "r", encoding="utf-8") as fp:
requirements = [
requirement.split(";")[0] for requirement in fp.read().strip().split("\n")
]
__version__ = "0.1.21"
download_url = "https://github.com/alesanmed-educational-projects/covid-data/archive/refs/tags/{}.tar.gz".format(
__version__
)
setup(
name="covid_data",
entry_points={
"console_scripts": [
"covid-data = covid_data:script_entrypoint",
],
},
packages=find_packages(),
version=__version__,
license="The Unlicense",
description="Data loader part of the mid-project for the Data Science bootcamp from Core Code School",
long_description=long_description,
long_description_content_type="text/markdown",
author="alesanchez",
author_email="[email protected]",
url="https://github.com/alesanmed-educational-projects/covid-data",
download_url=download_url,
keywords=["covid", "core"],
install_requires=requirements,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Programming Language :: Python :: 3",
],
zip_safe=False,
)