-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·39 lines (34 loc) · 1000 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
35
36
37
38
39
#!/usr/bin/env python
# To install, run at command prompt of the Source directory:
# python setup.py intall
from setuptools import setup, find_packages
setup(
name="DICOMTransit",
version="0.4",
description="DICOMTransit server as an intermediate step to facilitate transfer, anonymization and upload of data from Orthanc to LORIS instances.",
url="https://cnbp.ca",
author="Canadian Neonatal Brain Platform",
author_email="it@cnbp.ca",
keywords="mri neonatal CNBP brain imaging",
project_urls={"Source Code": "https://github.com/CNBP/DICOMTransit/"},
python_requires="3.6",
license="MIT",
packages=find_packages(),
install_requires=[
"python-dotenv"
"pydicom"
"python-dateutil"
"pytest-cov"
"tqdm"
"paramiko"
"gevent"
"pyodbc"
"requests"
"config"
"werkzeug"
"flask"
"transitions"
"mysql-connector-python"
],
zip_safe=False,
)