mirror of
https://github.com/msberends/AMR.git
synced 2025-04-17 18:30:33 +02:00
28 lines
738 B
Python
28 lines
738 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='AMR',
|
|
version='2.1.1.9239',
|
|
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',
|
|
)
|