File: setup.py

package info (click to toggle)
python-backports-shutil-get-terminal-size 1.0.0-3~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 96 kB
  • sloc: python: 117; makefile: 5
file content (28 lines) | stat: -rw-r--r-- 918 bytes parent folder | download | duplicates (3)
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
#!/usr/bin/env python

from setuptools import setup, find_packages

with open("README.rst") as readme:
    long_description = readme.read()

with open("HISTORY.rst") as history:
    long_description += "\n\n" + history.read()

setup(name="backports.shutil_get_terminal_size",
      version="1.0.0",
      description="A backport of the get_terminal_size function from Python 3.3's shutil.",
      url="https://github.com/chrippa/backports.shutil_get_terminal_size",
      author="Christopher Rosell",
      author_email="chrippa@tanuki.se",
      license="MIT",
      long_description=long_description,
      packages=find_packages(),
      classifiers=[
        "Development Status :: 5 - Production/Stable",
        "License :: OSI Approved :: MIT License",
        "Programming Language :: Python :: 2.6",
        "Programming Language :: Python :: 2.7",
        "Programming Language :: Python :: 3.2",
      ]
)