-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·39 lines (35 loc) · 1.01 KB
/
setup.py
File metadata and controls
executable file
·39 lines (35 loc) · 1.01 KB
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
from setuptools import setup, find_packages
# read the contents of your README file
from os import path
THISDIRECTORY = path.abspath(path.dirname(__file__))
with open(path.join(THISDIRECTORY, "README.md")) as f:
LONGDESC = f.read()
setup(
name="codal-tsetmc",
version="0.0.7",
description="Data Downloader for stock market and finantial statement",
url="http://github.com/mohsenebrahimyir/codal-tsetmc",
author="Mohsen Ebrahimi",
author_email="mohsenebrahimy.ir@gmail.com",
license="MIT",
long_description=LONGDESC,
long_description_content_type="text/markdown",
package_dir={"": "src"},
packages=[
"codal_tsetmc",
"codal_tsetmc.download",
"codal_tsetmc.models",
"codal_tsetmc.config",
],
install_requires=[
"wheel",
"pandas",
"sqlalchemy",
"requests",
"jdatetime",
],
zip_safe=False,
python_requires=">=3.8",
scripts=["bin/ct-get", "bin/ct-get.bat"],
include_package_data=True,
)