-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
34 lines (30 loc) · 1008 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
34
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
REQUIREMENTS = ['Flask',
'Keras',
'numpy==1.19.2',
'tensorflow',
'h5py==2.10.0',
'ujson',
'unicodecsv',
'urllib3',
'webencodings',
'Werkzeug',
'opencv-python-headless',
'scikit-learn']
setuptools.setup(
name='brain_scan',
version='0.1.0',
description='A brain scan tumor classification model.',
license='MIT',
long_description=long_description,
author='Alyson Suchodolski, Sabrina Wang, Trevor Nims, \
Vanessa Hsu, Aaliyah Hänni, Jordan Fields',
url='http://doihaveatumor.com/',
python_requires='>=3.6, <3.9',
packages=setuptools.find_packages(),
install_requires=REQUIREMENTS
)