-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
44 lines (40 loc) · 1.44 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
39
40
41
42
43
44
#!/usr/bin/env python3
from setuptools import find_packages, setup
import os
def read_file(filename):
with open(os.path.join(os.path.dirname(__file__), filename)) as file:
return file.read()
setup(
name="radarpipeline",
version="2.0.1",
license='Apache',
description="A python feature generation and visualization package use with RADAR project data.",
url="https://github.com/RADAR-base/radarpipeline",
download_url='https://github.com/RADAR-base/radarpipeline/archive/refs/tags/v2.0.1.tar.gz',
readme="README.md",
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
author="Heet Sankesara, Amos Folarin",
author_email="[email protected], [email protected]",
keywords=['mhealth', 'pipeline', 'big-data'],
packages=find_packages(),
install_requires=[
"pyYaml==6.0",
"pandas==1.4.1",
"numpy==1.22.3",
"scipy==1.10.0",
"pyspark[sql]==3.3.0",
"GitPython==3.1.30",
"strictyaml==1.7.3",
"paramiko==3.1.0"],
test_suite="tests",
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)