-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
50 lines (49 loc) · 1.42 KB
/
setup.py
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from setuptools import find_packages, setup
setup(
name='crypr',
version='0.0.1',
packages=find_packages(),
description='A prediction API for cryptocurrencies.',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
],
keywords='data_science cryptocurrency bitcoin ethereum deep_learning machine_learning prediction',
author='Daniel C Stevenson',
author_email='daniel.cortez.stevenson@gmail.com',
license='MIT',
install_requires=[
'connexion==2.2.0',
'click>=0.7.0',
'Flask>=1.0.2',
'Keras>=2.2.2',
'keras-self-attention==0.36',
'numpy>=1.16',
'pandas>=0.23.1',
'python-dotenv>=0.8.2',
'PyWavelets==1.0.1',
'requests>=2.19.1',
'scikit-learn>=0.19.2',
'scipy>=1.1.0',
'tensorflow>=1.8.0',
],
setup_requires=[
'pytest-runner>=2.0,<3dev',
],
tests_require=[
'pytest>=4.0.2',
'coverage>=4.5.2',
'nbval>=0.9',
'pytest-xdist>=1.28',
],
entry_points = {
'console_scripts': [
'crypr-data=crypr.scripts.make_dataset:main',
'crypr-features=crypr.scripts.make_features:main',
'crypr-models=crypr.scripts.make_train_models:main',
],
},
include_package_data=True,
zip_safe=False
)