forked from icepie/lit-ncov-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 800 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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="litncov",
version="2.2.1",
description="A ncov report library and tool for LIT(Luoyang Institute of Science and Technology)",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/icepie/lit-ncov-report",
author="Tea",
author_email="[email protected]",
license="MIT",
packages=["litncov"],
install_requires=["rich", "requests", "pytz"],
keywords=["lit", "ncov", "report", "11070"],
python_requires=">=3.6",
entry_points={
"console_scripts": [
"litncov = litncov.main:main",
],
},
)