-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 698 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (21 loc) · 698 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
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
setup(
name='tic-toc',
packages=find_packages(exclude=["tests.*", "tests", "examples", "examples.*"]),
data_files=["readme.md", "license.txt"],
include_package_data=True,
version='0.1.2',
description='Measure and track the wall and CPU time of defined scopes.',
author='Darius Morawiec',
author_email='ping@nok.onl',
url='https://github.com/nok/tic-toc/tree/stable',
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
install_requires=[],
keywords=['time', 'timeit'],
license='MIT',
)