forked from quantumgraph/qgprofiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 774 Bytes
/
setup.py
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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='qgprofiler',
version='0.1.13',
description='Profiler with time deterministic profiling of functions',
url='https://github.com/quantumgraph/qgprofiler',
author='QuantumGraph',
author_email='contact@quantumgraph.com',
license='MIT',
packages=find_packages(),
long_description=read('README.md'),
keywords = ['profiler', 'monitoring', 'logging', 'utility'],
zip_safe=False,
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Utilities',
'License :: Freeware',
'Programming Language :: Python',
],
)