-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 821 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 821 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
25
26
27
from setuptools import find_packages
from setuptools import setup
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = ['numpy', 'pandas', 'plotly']
setup(
name='performance',
version='1.0.0',
description="Module to instrument a python code and visualize the call patterns",
long_description=readme + '\n\n',
author="Ashkan Aazami",
author_email='aazami@gmail.com',
url='https://github.com/ashaazami/performance',
packages=find_packages(),
package_dir={'performance': 'performance'},
include_package_data=True,
install_requires=requirements,
zip_safe=False,
keywords=['performance', 'log', 'call pattern', 'analyzer'],
classifiers=[
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
]
)