-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (22 loc) · 913 Bytes
/
setup.py
File metadata and controls
29 lines (22 loc) · 913 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
"""Setup script for benchmarker package."""
import setup_boilerplate
class Package(setup_boilerplate.Package):
"""Package metadata."""
name = 'benchmarker'
description = 'performance benchamrking framework'
url = "https://benchmarker.blackbird.pw/"
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering']
keywords = ['performance', 'benchmarking', 'neural network']
if __name__ == '__main__':
Package.setup()