-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (21 loc) · 709 Bytes
/
setup.py
File metadata and controls
26 lines (21 loc) · 709 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
"""Setuptools configuration for venvctrl."""
from setuptools import setup
from setuptools import find_packages
with open("README.rst", "r") as readmefile:
README = readmefile.read()
setup(
name="venvctrl",
version="0.10.0",
url="https://github.com/kevinconway/venvctrl",
description="API for virtual environments.",
author="Kevin Conway",
author_email="kevinjacobconway@gmail.com",
long_description=README,
license="MIT",
packages=find_packages(exclude=["tests", "build", "dist", "docs"]),
entry_points={
"console_scripts": ["venvctrl-relocate = venvctrl.cli.relocate:main"]
},
include_package_data=True,
install_requires=["virtualenv"],
)