-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 1.07 KB
/
setup.py
File metadata and controls
29 lines (25 loc) · 1.07 KB
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
from setuptools import setup, find_packages
VERSION = "1.1.1"
DESCRIPTION = "Python wrapper of R package `iglu` for continuous glucose monitoring data analysis. Wraps the R functions, thus making them accessible in Python."
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
# Setting up
setup(
name="iglu-py", # name must match the folder name where code lives
version=VERSION,
author="Nathaniel J. Fernandes, Lizzie Chun, Irina Gaynanova",
author_email="njfernandes24@tamu.edu, lizzie_chun1@tamu.edu, irinagn@umich.edu",
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"rpy2>=3.5.13",
"pandas>=2.0.0",
], # we've validated functionality with these package versions.
python_requires=">=3.8.0",
keywords=["iglu", "Continuous Glucose Monitoring analysis software", "diabetes"],
include_package_data=True,
)