forked from TimeSynth/TimeSynth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (26 loc) · 874 Bytes
/
setup.py
File metadata and controls
31 lines (26 loc) · 874 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
30
31
import sys
import logging
from setuptools import setup
from setuptools import find_packages
import subprocess
# Install TimeSynth fork of jitcdde
subprocess.call([sys.executable, "-m", "pip", "install", "git+https://github.com/TimeSynth/jitcdde.git"])
# Manage requirments
with open('requirements.txt') as f:
requirements = f.read().splitlines()
tests_requirements = [
'pytest'
]
# Install
setup(name='timesynth',
version='0.2.2',
description='Library for creating synthetic time series',
url='https://github.com/TimeSynth/TimeSynth',
author='Abhishek Malali, Reinier Maat, Pavlos Protopapas',
author_email='anon@anon.com',
license='MIT',
include_package_data=True,
packages=find_packages(),
install_requires=requirements,
tests_require=tests_requirements,
setup_requires=["pytest-runner"])