-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 758 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 758 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
import re
import ast
from setuptools import setup
from setuptools import find_packages
_version_re = re.compile(r'__version__\s+=\s+\'(.*)\'')
with open('paleo/__init__.py', 'r') as f:
_version = str(ast.literal_eval(_version_re.search(f.read()).group(1)))
setup(
name='Paleo',
version=_version,
description=('An analytical model to estimate the scalability and '
'performance of deep learning systems.'),
author='Hang Qi',
author_email='hangqi@ucla.edu',
url='https://github.com/TalwalkarLab/paleo/',
license='Apache 2.0',
install_requires=['click', 'numpy', 'six'],
packages=find_packages(),
entry_points={
'console_scripts': [
'paleo=paleo.profiler:cli'
]
})