generated from radiome-lab/radiome_base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1.03 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
30
31
32
33
34
35
import os
from setuptools import setup, find_namespace_packages
with open("README.md", "r") as fh:
long_description = fh.read()
requirements = []
if os.path.exists('requirements.txt'):
with open('requirements.txt') as req:
requirements = list(filter(None, req.read().splitlines()))
setup(
name="registration",
version="0.0.1",
author="Pu Zhao",
author_email="[email protected]",
description="Radiome Registration Workflows",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pypa/sampleproject",
packages=find_namespace_packages(include=['radiome.workflows.*']),
package_data={
'radiome.workflows.registration.ants': ['spec.yml'],
'radiome.workflows.registration.fsl': ['spec.yml']
},
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
include_package_data=True,
zip_safe=False,
)