-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
38 lines (34 loc) · 1.22 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
from setuptools import setup, find_packages
from os import path
__version__ = 1.45
with open( ".\\readme.md", "r") as f:
long_description = f.read()
with open(".\\requirements.txt", "r") as f:
install_requires = f.read().splitlines()
setup(
name="pytse_filter",
version=__version__,
author="Farhad Mohammadi",
author_email="farhad.mohammadi60@gmail.com",
description="A user-friendly project to filter symbols of Tehran Stock Exchange",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/farhad-mohammadi/pytse_filter",
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial :: Investment",
],
python_requires = ">=3.6",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=install_requires,
package_data = {
"pytse_filter": ["docs/*", "examples/*","syms.json"]
},
license="MIT License",
license_file="license.md"
)