-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 912 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (27 loc) · 912 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
27
28
29
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='timeseriescv',
version='0.2',
description='Scikit-learn style cross-validation classes for time series data',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
],
keywords='machine-learning cross-validation scikit-learn time-series',
url='https://github.com/sam31415/timeseriescv',
author='Samuel Monnier',
author_email='samuel.monnier@gmail.com',
license='MIT',
packages=['timeseriescv'],
install_requires=[
'numpy', 'pandas'
],
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'],
)