-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 825 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 825 Bytes
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
from setuptools import setup, find_packages
exec(open('dcmviewer/_version.py').read())
setup(name='dcmviewer',
description='Project Description',
packages=find_packages(),
version=__version__,
url='https://github.com/jthacker/dcmviewer/',
download_url='https://github.com/jthacker/dcmviewer/archive/v{}.tar.gz'.format(__version__),
author='Jon Thacker',
author_email='thacker.jon@gmail.com',
keywords=[],
classifiers=[],
install_requires=[
'arrview>=1.1',
'jtmri>=0.3',
'terseparse',
'traits',
'traitsui'
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
entry_points = {'console_scripts': [
'dcmviewer = dcmviewer.cli:main'
]},
long_description="")