-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (24 loc) · 926 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
import setuptools
from quickfund import __version__
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="QuickFund",
author="MapleCCC",
author_email="[email protected]",
description="A script to fetch various fund information from "
"https://fund.eastmoney.com/, and structuralize into Excel document.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MapleCCC/QuickFund",
version=__version__,
packages=setuptools.find_packages(),
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
install_requires=open("requirements/install.txt", "r").read().splitlines(),
entry_points={"console_scripts": ["quickfund=quickfund.__main__:main",]},
)