forked from docopt/docopts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 1.33 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
27
28
29
30
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def file_get_contents(name):
with open(os.path.join(os.path.dirname(__file__), name)) as f:
return f.read()
setup(name = "docopts",
version = "0.5.0+fix",
author = "Lari Rasku",
author_email = "[email protected]",
url = "https://github.com/docopt/docopts",
license = "MIT",
description = "Shell interface for docopt, the command-line "
"interface description language.",
keywords = "shell bash docopt command-line",
long_description = file_get_contents('README.rst'),
scripts = ["docopts"],
install_requires = ["docopt == 0.5.0"],
classifiers = ["Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Topic :: Software Development :: User Interfaces"])