-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
66 lines (62 loc) · 2.13 KB
/
setup.py
File metadata and controls
66 lines (62 loc) · 2.13 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import setuptools
import pathlib
HERE = pathlib.Path(__file__).parent
INSTALL_REQUIRES = (HERE / "requirements.txt").read_text().splitlines()
__version__ = "0.0.0"
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="medicaid-utils",
version=__version__,
author=(
"Research Computing Group, Biostatistics Laboratory, The University of"
" Chicago"
),
author_email="manorathan@uchicago.edu",
description=(
"Python toolkit for Medicaid claims data analysis — preprocessing, cleaning,"
" risk adjustment, quality measures, and patient-level file construction"
" for MAX and TAF CMS data"
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/uc-cms/medicaid-utils",
project_urls={
"Documentation": "https://uc-cms.github.io/medicaid-utils/",
"Bug Tracker": "https://github.com/uc-cms/medicaid-utils/issues",
"Source Code": "https://github.com/uc-cms/medicaid-utils",
},
packages=setuptools.find_packages(),
include_package_data=True,
package_data={"": ["data/*.csv"]},
keywords=[
"medicaid",
"cms",
"claims-data",
"health-services-research",
"observational-study",
"taf",
"max",
"risk-adjustment",
"elixhauser",
"cohort-extraction",
"epidemiology",
"dask",
"healthcare-analytics",
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Information Analysis",
"Development Status :: 4 - Beta",
],
python_requires=">=3.11",
install_requires=INSTALL_REQUIRES,
)