-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (21 loc) · 942 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
pack_version = __import__('rpy2_Matrix').__version__
if __name__ == '__main__':
setup(
name='rpy2-Matrix',
version=pack_version,
description='Mapping the R package Matrix',
license='GPLv2+',
requires=['rpy2'],
packages=['rpy2_Matrix'],
classifiers=['Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
('License :: OSI Approved :: GNU General '
'Public License v2 or later (GPLv2+)'),
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Development Status :: 5 - Production/Stable']
)