Diff of /setup.py [000000] .. [ae9c43]

Switch to unified view

a b/setup.py
1
from setuptools import setup, find_packages
2
from codecs import open
3
from os import path
4
5
6
here = path.abspath(path.dirname(__file__))
7
8
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
9
    long_description = f.read()
10
11
12
setup(
13
    name='prescreen-prediction',
14
15
    version='0.1',
16
17
    description='Screen Failures prediction based on Electronic Health '
18
                'Records ',
19
20
    long_description=long_description,
21
22
    author='Valentin Charvet',
23
24
    author_email='valentin.charvet@gustaveroussy.fr',
25
26
    packages=find_packages()
27
    )