-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
65 lines (62 loc) · 1.92 KB
/
setup.py
File metadata and controls
65 lines (62 loc) · 1.92 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
from setuptools import find_packages, setup
from pathlib import Path
here = Path(__file__).parent
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="midrc_react",
version="0.1.0",
description="The MIDRC Representativeness Exploration and Comparison Tool (REACT) is a tool designed to compare the representativeness of biomedical data.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Robert Tomek",
author_email="rtomek@uchicago.edu",
url="https://github.com/MIDRC/MIDRC-REACT",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
install_requires=[
"numpy>=1.26.0",
"pandas>=2.2.0",
"PySide6>=6.6.0",
"scipy>=1.12.0",
"openpyxl>=3.1.0",
"PyYAML>=6.0.0",
"prince>=0.15.0",
"pydantic>=2.7.0",
"python-dateutil>=2.9.0.post0",
"scikit-learn>=1.6.1",
],
optional_dependencies={
"ipython": [
"ipywidgets>=8.1.5",
"ipython>=8.28.0",
"matplotlib>=3.9.0",
"seaborn>=0.13.2",
"plotly>=5.24.1",
],
"dash": [
"dash>=2.18.2",
"dash-bootstrap-components>=1.4.1",
"plotly>=5.24.1",
],
"dev": [
"pytest>=8.1.0",
"black>=24.9.1",
"flake8>=6.1.0",
"mypy>=1.3.0",
],
},
python_requires=">=3.10",
entry_points={
"console_scripts": [
"midrc-react=midrc_react.gui.pyside6.launch_react:launch_react",
"MIDRC-REACT=midrc_react.gui.pyside6.launch_react:launch_react",
],
},
)