-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathsetup.py
36 lines (32 loc) · 1.17 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
'''
'''
import pathlib
from setuptools import setup, find_packages
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')
install_requires = ['dask[distributed]', 'dask[dataframe]', 'configparser',
'cloudpickle', 'PyYaml',
'jsonpath_ng', 'ruamel.yaml', 'pandas']
setup(
name='greenflow',
version='1.0.5',
description='greenflow - RAPIDS Financial Services Algorithms',
long_description=long_description,
long_description_content_type='text/markdown',
author='NVIDIA Corporation',
url='https://github.com/NVIDIA/fsi-samples/tree/main/greenflow',
packages=find_packages(include=['greenflow', 'greenflow.*']),
install_requires=install_requires,
license="Apache",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux',
],
entry_points={
'console_scripts': ['greenflow-flow=greenflow.flow:main'],
}
)