-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (31 loc) · 874 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
34
35
36
# coding: utf-8
import pkg_resources
import setuptools
import os
from pathlib import Path
VERSION = "1.5.6"
file_path = os.path.join(Path('.'), "requirements.txt")
with open(file_path) as requirements_txt:
install_requires = [
str(requirement)
for requirement
in pkg_resources.parse_requirements(requirements_txt)
]
lib = "NNTrade.indicators"
libs = [f"{lib}.{pkg}" for pkg in setuptools.find_packages(where="src")]
libs.append(lib)
setuptools.setup(
name=lib,
version=VERSION,
description="Indicator factory and basic indicator",
author_email="[email protected]",
url="https://github.com/NNTrade/IndicatorFactory",
keywords=["indicator"],
install_requires=install_requires,
packages=libs,
package_dir={lib: 'src'},
include_package_data=True,
long_description="""\
read Readme
"""
)