-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
39 lines (36 loc) · 1.15 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
37
38
39
#!/usr/bin/env python
from setuptools import setup
import unittest
with open('README.md') as _f:
long_description = _f.read()
setup(
name='sdb',
version='1.8',
author='Ryan Petrello',
author_email='[email protected]',
url='https://github.com/ryanpetrello/sdb',
description='A socket-based remote debugger for Python',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
install_requires=['pygments', 'six'],
py_modules=['sdb'],
entry_points={
'console_scripts': [
'sdb = sdb:main',
'sdb-listen = sdb:listen'
]
}
)