-
-
Notifications
You must be signed in to change notification settings - Fork 464
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 683 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 683 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
import os
import platform
from setuptools import setup
tensorflow = 'tensorflow'
if platform.system() == 'Darwin' and platform.processor() == 'arm':
tensorflow = 'tensorflow-macos'
# https://github.com/grpc/grpc/issues/25082
os.environ['GRPC_PYTHON_BUILD_SYSTEM_OPENSSL'] = '1'
os.environ['GRPC_PYTHON_BUILD_SYSTEM_ZLIB'] = '1'
install_requires = ['numpy', tensorflow]
setup(
name='keras-tcn',
version='3.5.6',
description='Keras TCN',
author='Philippe Remy',
license_files=['MIT'],
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
packages=['tcn'],
install_requires=install_requires
)