-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.13 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
41
42
43
44
45
46
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md', encoding="utf-8") as f:
readme = f.read()
setup(
name='deep-piste',
version='0.0.18',
description='Evaluating the impact of IA on Breast Cancer Screening Program',
long_description=readme,
long_description_content_type='text/markdown',
author=['Francisco Orchard', 'William Madié'],
author_email=['f.orchard@epiconcept.fr', 'w.madie@epiconcept.fr'],
url='https://github.com/Epiconcept-Paris/deep.piste',
license="GNU General Public License v2.0",
install_requires=[
"deidcm",
"pycryptodome ",
"qrcode",
"pyzbar[scripts]",
"requests",
"pynetdicom",
"xmltodict",
"clipboard",
"pyarrow",
"ipykernel",
"nbconvert",
"jupytext",
"plotly",
"python-gnupg",
"fabric",
"paramiko"
],
packages=find_packages(),
include_package_data=True,
extras_require={
"quality-tools": [
"pylint",
"autopep8",
"pytest",
"coverage"
]
}
)