forked from kevinconway/venvctrl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 695 Bytes
/
setup.py
File metadata and controls
27 lines (22 loc) · 695 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
"""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.2.1',
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,
)