-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·37 lines (29 loc) · 1.09 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
import sys
import os
# Make sure we are running python3.5+
if 10 * sys.version_info[0] + sys.version_info[1] < 35:
sys.exit("Sorry, only Python 3.5+ is supported.")
from setuptools import setup
def readme():
print("Current dir = %s" % os.getcwd())
print(os.listdir())
with open('README.rst') as f:
return f.read()
setup(
name = 'covidnet_train',
# for best practices make this version the same as the VERSION class variable
# defined in your ChrisApp-derived Python class
version = '0.1',
description = 'run a COVID-NET training session',
long_description = readme(),
author = 'FNNDSC',
author_email = 'dev@babyMRI.org',
url = 'http://wiki',
packages = ['covidnet_train'],
install_requires = ['chrisapp', 'pudb'],
test_suite = 'nose.collector',
tests_require = ['nose'],
scripts = ['covidnet_train/covidnet_train.py'],
license = 'MIT',
zip_safe = False
)