-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathsetup.py
58 lines (57 loc) · 1.58 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import os
import shutil
import subprocess
from setuptools import setup, find_packages, Command
from setuptools.command.install import install
setup(
name="vnstock",
version="3.1.0.2",
description="A comprehensive and transparent solution for Vietnamese stock market analysis.",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Thinh Vu",
author_email="[email protected]",
url="https://github.com/thinh-vu/vnstock",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
packages=find_packages(),
package_data={
"vnstock": ["docs/*.txt", "docs/*.csv"],
},
install_requires=[
"requests",
"beautifulsoup4",
"pandas",
"seaborn",
"vnai>=0.1.3",
"openpyxl",
"pydantic",
"psutil",
"fake_useragent",
"vnstock_ezchart",
"click",
"packaging>=20.0",
"importlib-metadata>=1.0",
],
extras_require={
"dev": ["flake8"],
"docs": ["sphinx", "sphinx_rtd_theme"],
"test": ["unittest"],
},
setup_requires=[
"setuptools>=42",
"wheel",
],
entry_points={
'console_scripts': [
'vnstock=vnstock.common.cli:cli',
],
},
)