-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1018 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
from setuptools import setup, find_packages
setup(
name='neuropacs',
version='1.8.5',
description='neuropacs Python API',
license='MIT',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Kerrick Cavanaugh',
author_email='[email protected]',
url='https://github.com/neuropacs/neuropacs-py-sdk',
packages=find_packages(),
install_requires=[
'cryptography>=41.0.1',
'pycryptodome>=3.20.0',
'requests>=2.31.0',
'requests-toolbelt>=1.0.0',
'dicomweb-client>=0.59.3',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Healthcare Industry',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)
# To update this package:
# 1. Remove /build /dist /neuropacs.egg-info
# 2. Update version in setup.py and __init__.py
# 3. Run: python setup.py sdist bdist_wheel
# 4. Run: twine upload dist/*