1+ """Measure execution time with a context manager
2+
3+ See:
4+ https://github.com/mherrmann/timer-cm
5+ """
6+
7+ from setuptools import setup
8+
9+ description = 'Measure execution time with a context manager.'
10+ setup (
11+ name = 'timer-cm' ,
12+
13+ version = '1.0' ,
14+
15+ description = description ,
16+ long_description =
17+ description + '\n \n Home page: https://github.com/mherrmann/timer-cm' ,
18+ url = 'https://github.com/mherrmann/timer-cm' ,
19+
20+ author = 'Michael Herrmann' ,
21+ author_email = '[my first name]@[my last name].io' ,
22+
23+ license = 'MIT' ,
24+
25+ platforms = ['MacOS' , 'Windows' , 'Debian' ],
26+
27+ classifiers = [
28+ 'Development Status :: 5 - Production/Stable' ,
29+ 'Intended Audience :: Developers' ,
30+
31+ 'License :: OSI Approved :: MIT License' ,
32+
33+ 'Operating System :: OS Independent' ,
34+
35+ 'Programming Language :: Python' ,
36+ 'Programming Language :: Python :: 2' ,
37+ 'Programming Language :: Python :: 2.7' ,
38+ 'Programming Language :: Python :: 3' ,
39+ 'Programming Language :: Python :: 3.2' ,
40+ 'Programming Language :: Python :: 3.3' ,
41+ 'Programming Language :: Python :: 3.4' ,
42+ 'Programming Language :: Python :: 3.5' ,
43+ 'Programming Language :: Python :: 3.6' ,
44+
45+ 'Topic :: Software Development :: Libraries' ,
46+ 'Topic :: Software Development :: Libraries :: Python Modules'
47+ ],
48+
49+ keywords = 'timer context manager' ,
50+
51+ py_modules = ['timer_cm' ]
52+ )
0 commit comments