forked from gotcha/vimpdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.23 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
from setuptools import setup, find_packages
version = '0.4.6dev'
setup(name='vimpdb',
version=version,
description="Vim and Pdb integration",
long_description=open("README.rst").read() + "\n" +
open("CREDITS.txt").read() + "\n" +
open("CHANGES.txt").read() + "\n" +
open("TODO.txt").read(),
classifiers=[
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Topic :: Software Development :: Debuggers',
'Topic :: Text Editors',
],
keywords='pdb vim',
author='Godefroid Chapelle',
author_email='gotcha@bubblenet.be',
url='http://github.com/gotcha/vimpdb',
license='MIT',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
'vim_bridge',
],
entry_points="""
# -*- Entry points: -*-
""",
)