-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (27 loc) · 1.12 KB
/
setup.py
File metadata and controls
33 lines (27 loc) · 1.12 KB
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
"""Setup script for timing package."""
import boilerplates.setup
class Package(boilerplates.setup.Package):
"""Package metadata."""
name = 'timing'
description = 'Simplify logging of timings of selected parts of an application.'
url = 'https://github.com/mbdevpl/timing'
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering',
'Topic :: System :: Benchmark',
'Topic :: System :: Logging',
'Typing :: Typed']
keywords = ['timing', 'timer', 'time measurement', 'profiling', 'reproducibility']
if __name__ == '__main__':
Package.setup()