-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 941 Bytes
/
setup.py
File metadata and controls
34 lines (33 loc) · 941 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
32
33
34
from setuptools import setup
setup(
name='python-benchmark-harness',
version='1.0.3',
packages=[
'Benchmarking',
'Benchmarking._database',
'Benchmarking.profiling',
'Benchmarking._templates',
'Benchmarking._utilities',
'Benchmarking.statistical',
'Benchmarking._configuration',
'Benchmarking.visualizations'
],
install_requires=[
'SQLAlchemy',
'SQLAlchemy-Utils',
'setuptools',
'numpy',
'pandas',
'Jinja2',
'scipy',
'PyYAML',
'plotly'
],
package_dir={'': 'package'},
url='https://github.com/JoeyHendricks/python-benchmarks',
license='MIT',
author='Joey Hendricks',
author_email='joey.hendricks20@icloud.com',
description='A micro/macro benchmark framework for the Python '
'programming language that helps with optimizing your software.'
)