-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
34 lines (31 loc) · 843 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("VERSION", "r") as vf:
VERSION = vf.read().strip()
setuptools.setup(
name="zju_hitcarder",
version=VERSION,
author="Tishacy",
author_email="[email protected]",
description="ZJU health hitcarder",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
'requests>=2.25.1',
'loguru>=0.5.0',
'APScheduler>=3.7.0',
"click>=8.0.1"
],
entry_points={
'console_scripts': [
'hitcarder=hitcarder.cli:cli'
],
},
classifiers=(
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
)
)