Completed
Push — master ( 654e36...af37f8 )
by Dafne van
06:45
created

read()   A

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
dl 0
loc 2
rs 10
1
import os
2
from setuptools import setup
3
4
def read(fname):
5
    return open(os.path.join(os.path.dirname(__file__), fname)).read()
6
7
setup(
8
    name = "mcfly",
9
    version = "0.0.1",
10
    description = ("Deep learning for time series data"),
11
    license = "Apache 2.0",
12
    keywords = "Python",
13
    url = "https://github.com/NLeSC/mcfly",
14
    packages=['mcfly'],
15
    long_description=read('README.md'),
16
    classifiers=[
17
        'Development Status :: 1 - Planning',
18
        'License :: OSI Approved :: Apache Software License',
19
        'Programming Language :: Python',
20
    ],
21
)
22