forked from KitwareMedical/dicom-anonymizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (25 loc) · 987 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
"""A setuptools based setup module.
See:
https://packaging.python.org/guides/distributing-packages-using-setuptools/
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
setup(
name='dicom_anonymizer', # Required
version='1.0.12', # Required
packages=find_packages(), # Required
# Define an executable calls dicom-anonymizer from a specific file
entry_points={
'console_scripts': [
'dicom-anonymizer = dicomanonymizer.anonymizer:main'
]
},
# This field lists other packages that your project depends on to run.
# Any package you put here will be installed by pip when your project is
# installed, so they must be valid existing projects.
#
# For an analysis of "install_requires" vs pip's requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=['pydicom', 'tqdm'], # Optional
)