forked from ghodsizadeh/tehran-stocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 973 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
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="tehran-stocks",
version="0.8.0.2",
description="Data Downloader for Tehran stock market",
url="http://github.com/ghodsizdeh/tehran-stocks",
author="Mehdi Ghodsizadeh",
author_email="[email protected]",
license="MIT",
long_description=LONGDESC,
long_description_content_type="text/markdown",
package_dir={"": "src"},
packages=[
"tehran_stocks",
"tehran_stocks.download",
"tehran_stocks.models",
"tehran_stocks.config",
],
install_requires=["wheel", "pandas", "sqlalchemy", "requests", "jdatetime"],
zip_safe=False,
python_requires=">=3.6",
scripts=["bin/ts-get", "bin/ts-get.bat"],
include_package_data=True,
)