Skip to content

Commit

Permalink
ready for PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
glebarez committed Jun 8, 2019
1 parent f4be60f commit 31795ed
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion perfy.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from functools import wraps
from copy import deepcopy

__version__ = '0.2'
__version__ = '0.21'

class Perfy():
'''Perfy - a simple performance tracer
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
from distutils.core import setup
setup(
name = 'perfy',
packages = ['perfy'],
version = '0.21',
license='MIT',
description = 'Perfy - a lightweight performance tracer for python',
author = 'Gleb Sakhnov',
author_email = 'gleb.sakhnov@gmail.com',
url = 'https://github.com/glebarez/perfy',
download_url = 'https://github.com/user/reponame/archive/v_01.tar.gz', # I explain this later on
keywords = ['profiling', 'trace', 'runtime', 'analysis'],
install_requires=[],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Profiling Tools',
'Topic :: Software Development :: Performance Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)

0 comments on commit 31795ed

Please sign in to comment.