-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
27 lines (27 loc) · 999 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
27
from distutils.core import setup
setup(
name = 'extdbg',
packages = ['extdbg'], # this must be the same as the name above
version = '0.0.2',
description = 'An extended debugging python utilities.',
author = 'Eugene Duboviy',
author_email = '[email protected]',
url = 'https://github.com/duboviy/extdbg', # use the URL to the github repo
download_url = 'https://github.com/duboviy/extdbg/tarball/0.0.2', # I'll explain this in a second
keywords = ['debug', 'utility', 'testing'], # arbitrary keywords
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description="""
extdbg extends existing debugging utilities and provides a simple and pythonic way to debug.
""",
install_requires=[
'psutil',
'gevent',
],
)