-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (26 loc) · 886 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (26 loc) · 886 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='virtualenvwrapper.npm',
version='0.2',
description='Plugin for virtualenvwrapper to automatically '
'encapsulate inside the virtual environment '
'any npm installed globaly when the venv is activated',
author='Rach Belaid',
author_email='dev@ironbraces.com',
url='https://github.com/rach/virtualenvwrapper.npm',
namespace_packages=['virtualenvwrapper'],
packages=['virtualenvwrapper'],
install_requires=[
'virtualenv',
'virtualenvwrapper>=2.11',
],
entry_points={
'virtualenvwrapper.post_activate_source': [
'npm = virtualenvwrapper.npm:post_activate_source',
],
'virtualenvwrapper.pre_deactivate_source': [
'npm = virtualenvwrapper.npm:pre_deactivate_source',
],
}
)