-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (21 loc) · 688 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (21 loc) · 688 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
import os
import io
from setuptools import setup
DESCRIPTION = 'Python functions to facilitate the pre-processing of data for ML tasks in a clinical context.'
here = os.path.abspath(os.path.dirname(__file__))
try:
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
except FileNotFoundError:
long_description = DESCRIPTION
setup(
name='cleandat',
version='0.0.3',
packages=['tests', 'cleandat'],
url='https://github.com/tiadams/cleandat',
license='MIT License',
author='Tim Adams',
author_email='tim-adams@gmx.net',
description=DESCRIPTION,
long_description=long_description,
)