File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- from setuptools import find_packages , setup
1+ from setuptools import setup
22
3- setup (
4- name = "pat2vec" ,
5- version = "1.0.0" ,
6- description = (
7- "A comprehensive Python package for healthcare data engineering, designed to "
8- "extract, transform, and feature engineer patient data from CogStack-based "
9- "electronic health record (EHR) datalakes. It provides tools for cohort "
10- "building, batch data processing, clinical note analysis, and creating "
11- "machine learning-ready datasets."
12- ),
13- long_description = open ("README.md" , "r" , encoding = "utf-8" ).read (),
14- long_description_content_type = "text/markdown" ,
15- author = "Samora Hunter" ,
16- author_email = "samorahunter@gmail.com" ,
17- url = "https://github.com/SamoraHunter/pat2vec.git" ,
18- packages = find_packages (),
19- classifiers = [
20- "Programming Language :: Python :: 3" ,
21- "License :: OSI Approved :: MIT License" ,
22- "Operating System :: OS Independent" ,
23- ],
24- )
3+ setup ()
You can’t perform that action at this time.
0 commit comments