https://github.com/anqif/adarad
Raw File
Tip revision: 6ee25d6d9251e36c40c14b55436b3aa905d1aa0a authored by Anqi Fu on 10 May 2021, 19:57:12 UTC
Just save the single dose matrix and let plan function take care of creating a list of T_treat dose_matrices
Tip revision: 6ee25d6
setup.py
from setuptools import setup

setup(
	name = "adarad",
	version = "0.0.1",
	author = "Anqi Fu",
	author_email = "anqif@stanford.edu",
	packages = ["adarad",],
	license = "Creative Commons Attribution-Noncommercial-Share Alike license",
	long_description = open("README.md").read(),
	long_description_content_type = "text/markdown",
	url = "https://github.com/anqif/adarad",
	install_requires = ["cvxpy>=1.0",
			    "matplotlib",
			    "numpy>=1.15",
			    "pyyaml"],
	python_requires = ">=3.6",
)

back to top