-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
33 lines (30 loc) · 946 Bytes
/
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
27
28
29
30
31
32
33
from setuptools import setup
from veh import __version__
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
]
setup(
name = "veh",
version = __version__,
description = "virtualenv for hg",
long_description = """Tie virtualenvs to individual mercurial repositorys.""",
license = "GNU GPL v3",
author = "Nic Ferrier",
author_email = "[email protected]",
url = "http://github.com/nicferrier/veh",
download_url="http://github.com/nicferrier/veh/downloads",
platforms = ["any"],
packages=['veh'],
install_requires=['pip', 'virtualenv', 'Mercurial'],
entry_points = {
'console_scripts': [
'veh = veh:main'
],
},
classifiers = classifiers,
)