-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.21 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from os.path import abspath, dirname, join
from setuptools import find_packages, setup
basedir = abspath(dirname(__file__))
with open(join(basedir, 'README.md')) as f:
README = f.read()
setup(
name='roses',
version='0.3.9',
description='ROSES (R pythOn Statistical tEstS) is a package to use statistical tests from R to Python',
long_description=README,
long_description_content_type='text/markdown',
author='Jackson Antonio do Prado Lima',
author_email='[email protected]',
maintainer='Jackson Antonio do Prado Lima',
maintainer_email='[email protected]',
license='MIT',
url='https://github.com/jacksonpradolima/roses',
packages=find_packages(exclude=['test_']),
classifiers=[
'Programming Language :: Python :: 3.6',
"Operating System :: OS Independent",
'License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
],
install_requires=[
'pandas>=0.23.4',
'scipy>=1.1.0',
'numpy>=1.15.2',
'seaborn>=0.9.0',
'pingouin>=0.2.2',
'matplotlib>=3.0.2',
'tzlocal==1.5.1',
'rpy2==3.4.2'
],
)