-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
21 lines (21 loc) · 950 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(name='NitroFE',
version='0.0.10',
url='https://github.com/NITRO-AI/NitroFE',
author='Nitro-AI',
author_email='[email protected]',
license='Apache License 2.0',
packages=['NitroFE','NitroFE.encoding.','NitroFE.time_based_features','NitroFE.time_based_features.indicator_features','NitroFE.time_based_features.moving_average_features','NitroFE.time_based_features.weighted_window_features'],
zip_safe=True,
description="NitroFE is a Python feature engineering engine which provides a variety of feature engineering modules designed to handle continous calcualtion.",
long_description=long_description ,
long_description_content_type='text/markdown',
install_requires=[
"pandas>=1.3.2",
"numpy>=1.21.2",
"scipy",
"plotly"
],
)