forked from square/PonyDebugger
-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
36 lines (33 loc) · 1.03 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
35
36
from setuptools import setup, find_packages
import sys, os
version = '1.0'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='ponyd',
version=version,
description="A remote debugging tool for native applications.",
long_description=read('README_ponyd.rst'),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: MacOS',
'Programming Language :: Python :: 2.7',
],
keywords='ponydebugger ponyd remote debugger',
author='Square, Inc.',
author_email='[email protected]',
url='https://github.com/square/PonyDebugger',
license='Apache Licence 2.0',
install_requires=['tornado'],
packages=['ponyd'],
include_package_data=True,
zip_safe=False,
entry_points = {
'console_scripts': [
'ponyd = ponyd.command:PonydCommand.main',
]
}
)