-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 737 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 737 Bytes
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
from setuptools import setup
def long_description():
with open("README.md") as readme:
return readme.read()
setup(
name="medil",
version="1.1.0",
author="Alex Markham",
author_email="alex.markham@causal.dev",
description="MeDIL is a Python package for causal factor analysis with the (me)asurement (d)ependence (i)nducing (l)atent causal model framework.",
long_description_content_type="text/markdown",
long_description=long_description(),
license="GNU Affero General Public License version 3 or later (AGPLv3+)",
packages=["medil"],
install_requires=[
"dcor",
"matplotlib",
"networkx",
"seaborn",
"scikit-learn",
"torch",
],
)