1
0
mirror of https://github.com/msberends/AMR.git synced 2025-12-19 14:20:20 +01:00

Python wrapper update

This commit is contained in:
github-actions[bot]
2025-09-10 13:08:48 +00:00
commit 5860c5ceae
12 changed files with 1608 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.9028',
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',
)