-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
29 lines (26 loc) · 1.01 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
from setuptools import setup, find_packages
from converter.settings import VERSION
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='jpetconverter',
version=VERSION,
author='Mateusz Kruk, Rafał Masalek',
description='This is a interfile to dicom converter created by Mateusz Kruk and Rafal Maselek.',
long_description=long_description,
long_description_content_type= 'text/markdown',
url = 'https://github.com/JPETTomography/j-pet-format-converter',
packages=find_packages(),
install_requires=["setuptools>=42",
"wheel",
"numpy",
"pyDicom",
"pylint",
"python-coveralls",
'dicomgenerator'],
keywords=['JPET','interfile','dicom','format','converter'],
classifiers =[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent']
)