-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 1.16 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
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='array_sensing',
packages=find_packages(),
version='0.1.0',
description=('BADASS_ML: A package to parse the input data and run ML '
'on fluorescence data collected from the BADASS (Barrel '
'Array Diagnostics And SenSing) technology'),
long_description=long_description,
long_description_content_type='text/markdown',
author=('Kathryn Shelley, Chris Wells Wood and Will Dawson in the lab '
'of Professor Dek Woolfson, University of Bristol'),
author_email='[email protected]',
url='https://github.com/woolfson-group/array_sensing',
license='MIT',
keywords=['badass', 'array sensing', 'machine learning'],
install_requires=['imblearn', 'jinja2', 'numpy', 'matplotlib', 'mlxtend',
'openpyxl', 'pandas', 'scikit-learn', 'scipy', 'seaborn',
'xlrd'],
classifiers=['Programming Language :: Python'],
python_requires=('!=2.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, '
'!=3.5.*, <4')
)