-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (31 loc) · 846 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
24
25
26
27
28
29
30
31
32
33
import setuptools
with open('README.md', 'r') as readme:
long_description = readme.read()
setuptools.setup(
name='med_bench',
version='0.1',
author='Judith Abécassis',
description='Benchmark mediation',
long_description=long_description,
long_description_content_type='text/markdown',
# packages=setuptools.find_packages('src/*'),
packages=setuptools.find_packages(
where='src',
include=['med_bench*'],
),
package_dir={"": "src"},
install_requires=[
'pandas>=1.2.1',
'scikit-learn>=0.22.1',
'numpy>=1.19.2',
'rpy2>=2.9.4',
'scipy>=1.5.2',
'seaborn>=0.11.1',
'matplotlib>=3.3.2',
"pytest"
],
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
)