-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 819 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 819 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
from setuptools import setup
setup(
name="ipython_venv_path_prompt",
version="0.1.5",
packages=["ipython_venv_path_prompt"],
license="MIT",
author="Javier Dehesa",
author_email="javidcf@gmail.com",
url="https://github.com/javidcf/ipython_venv_path_prompt",
description="A simple IPython extension to show the path and virtualenv in the prompt.",
long_description=open("README.rst").read(),
keywords="ipython venv virtualenv path cwd prompt",
install_requires = ['ipython'],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Framework :: IPython",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Utilities",
],
)