forked from pyinvoke/invoke
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (55 loc) · 1.82 KB
/
setup.py
File metadata and controls
64 lines (55 loc) · 1.82 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python
import sys
# Support setuptools or distutils
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# Import ourselves for version info
import invoke
# Frankenstein long_description: version-specific changelog note + README
v = invoke.__version__
long_description = """
To find out what's new in this version of Invoke, please see `the changelog
<http://docs.pyinvoke.org/en/%s/changelog.html>`_.
%s
""" % (v, open('README.rst').read())
setup(
name='invoke',
version=v,
description='Pythonic task execution',
license='BSD',
long_description=long_description,
author='Jeff Forcier',
author_email='jeff@bitprophet.org',
url='http://docs.pyinvoke.org',
install_requires=(
'lexicon>=0.1.2',
),
packages=["invoke", "invoke.parser"],
entry_points={
'console_scripts': [
'invoke = invoke.cli:main',
'inv = invoke.cli:main',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Software Distribution',
'Topic :: System :: Systems Administration',
],
)