-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (30 loc) · 1.13 KB
/
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
27
28
29
30
31
32
33
34
__version__ = '0.6.15'
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
pptop_injector = setuptools.Extension('__pptop_injector',
sources=['src/__pptop_injector.c'])
setuptools.setup(
name='pptop',
version=__version__,
author='Altertech',
author_email='[email protected]',
description='Open, extensible Python injector/profiler/analyzer',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://pptop.bma.ai/',
packages=setuptools.find_packages(),
license='MIT',
scripts=['bin/pptop'],
include_package_data=True,
ext_modules=[pptop_injector],
install_requires=[
'wheel', 'unipath', 'psutil', 'rapidtables', 'neotasker>=0.0.8',
'jsonpickle', 'pyyaml', 'yappi', 'neotermcolor', 'pygments',
'pyaltt2>=0.0.10'
],
classifiers=('Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Debuggers',
'Topic :: Software Development :: Testing'),
)