mirror of
https://github.com/zebrajr/tensorflow.git
synced 2025-12-06 12:20:11 +01:00
22 lines
374 B
Python
Executable File
22 lines
374 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
META_DATA = dict(
|
|
name = 'skflow',
|
|
version = '0.0.1',
|
|
url = 'https://github.com/google/skflow',
|
|
license = 'Apache-2',
|
|
packages = find_packages(),
|
|
install_requires = [
|
|
'sklearn',
|
|
'scipy',
|
|
'numpy',
|
|
],
|
|
)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
setup(**META_DATA)
|
|
|