1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-27 12:27:56 +02:00

Python wrapper update

This commit is contained in:
github-actions[bot]
2025-07-23 20:15:04 +00:00
commit 768586bf99
12 changed files with 1638 additions and 0 deletions

27
setup.py Normal file
View File

@ -0,0 +1,27 @@
from setuptools import setup, find_packages
setup(
name='AMR',
version='3.0.0.9016',
packages=find_packages(),
install_requires=[
'rpy2',
'numpy',
'pandas',
],
author='Matthijs Berends',
author_email='m.s.berends@umcg.nl',
description='A Python wrapper for the AMR R package',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/msberends/AMR',
project_urls={
'Bug Tracker': 'https://github.com/msberends/AMR/issues',
},
license='GPL 2',
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)