forked from gotcha/vimpdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 840 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 840 Bytes
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
from setuptools import setup, find_packages
version = '0.4.2dev'
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=[],
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=[
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
""",
)