-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 836 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import pathlib
__version__ = "1.0.0"
here = pathlib.Path(__file__).parent.resolve()
setup(
name="supplypipe",
version=__version__,
description="Stock price extractor and signal generator",
url="https://github.com/danielboloc/Supplypipe",
author="Daniel Boloc",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers, Investors",
"Topic :: Software Development :: Investment",
"Programming Language :: Python :: 3.9",
"License :: MIT License",
],
keywords="stocks, investment, exponential moving average",
package_dir={"": "supplypipe"},
packages=find_packages(where="supplypipe"),
python_requires=">=3.9, <4",
)