-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (23 loc) · 1.08 KB
/
setup.py
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
#!/usr/bin/env python
from __future__ import absolute_import, division, print_function, unicode_literals
from setuptools import setup, find_packages
setup(
name="autovenv",
version="0.3.1671337560",
description="virtualenv with less hassle",
url="http://autovenv.readthedocs.org",
long_description="Virtual environments are great, but they can be a bit annoying to create, manage, and switch between. It gets even worse when multiple different python versions come into play. autovenv takes the annoyance away.\n\nFull documentation is at https://autovenv.readthedocs.org",
author="Robert Lechte",
author_email="[email protected]",
install_requires=["virtualenv", "appdirs", "pyyaml"],
packages=find_packages(),
classifiers=["Development Status :: 3 - Alpha"],
scripts=[
"scripts/autovenv.sh",
"autovenv/python-build/autovenv-python-build",
"scripts/autovenv-build",
"scripts/autovenv-pythons-available",
],
include_package_data=True,
entry_points={"console_scripts": ["autovenv = autovenv:do_command"]},
)