-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
57 lines (42 loc) · 1.54 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
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
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.rst")) as fd:
long_description = fd.read()
exec(open(path.join("urwid_extended", "version.py")).read())
setup(
name='urwid_extended',
version=__version__,
description="Urwid new advanced widgets",
long_description=long_description,
keywords="curses ui widget scroll listbox user iterface text layout console ncures ihm",
packages=['urwid_extended'],
install_requires=['urwid'],
extras_requires={
'dev': ['twine'],
'test': [],
},
url="https://github.com/marlox-ouda/urwid_extended",
author="Marlox",
author_email="urwid@mx.ouda.fr",
license="MIT",
platforms="unix-like",
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classsifiers=[
"Development Status :: 1 - Planning",
"Environment :: Console",
"Environment :: Console :: Urwid",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
# Alignment with Urwid
"License :: OSI Approved :: LGPL",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Widget Sets",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation :: PyPy",
],
)