-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (36 loc) · 1.32 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
from setuptools import setup, find_namespace_packages
with open("README.md", "r", encoding = "utf-8") as fh:
long_description = fh.read()
DISTNAME = 'design_portfolio'
INSTALL_REQUIRES = (
['pandas>=0.19.2', 'numpy>=1.20.2', 'plotly>=4.2.1', 'scipy>=1.2.0', 'vnstock', 'requests']
)
VERSION = '0.0.3'
LICENSE = 'MIT'
DESCRIPTION = 'Viet Nam stock profile'
AUTHOR = "nguyenthebinh"
EMAIL = "[email protected]"
URL = "https://github.com/nguyenbinh0807/profilevn.git"
DOWNLOAD_URL = "https://github.com/nguyenbinh0807/profilevn.git"
setup(name=DISTNAME,
version=VERSION,
description=DESCRIPTION,
long_description = long_description,
long_description_content_type = "text/markdown",
author=AUTHOR,
author_email=EMAIL,
url=URL,
license = LICENSE,
#package name are looked in python path
packages=find_namespace_packages(include=['design_portfolio', 'design_portfolio.*']),
keywords=['markowitzvn', 'python'],
classifiers=[
"Programming Language :: Python :: 3",
'Intended Audience :: Developers',
"License :: OSI Approved :: MIT License",
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
"Operating System :: OS Independent",
],
install_requires=INSTALL_REQUIRES,
)