-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
37 lines (35 loc) · 1.04 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sys
from os import path
from glob import glob
name = 'panwid'
setup(name=name,
version='0.3.5',
description='Useful widgets for urwid',
author='Tony Cebzanov',
author_email='[email protected]',
url='https://github.com/tonycpsu/panwid',
python_requires='>=3.6',
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Intended Audience :: Developers'
],
packages=find_packages(),
data_files=[('share/doc/%s' % name, ['LICENSE','README.md']),
],
install_requires=[
"urwid",
"urwid-utils >= 0.1.2",
"six",
"raccoon >= 3.0.0",
"orderedattrdict",
"urwid_readline ~= 0.13"
],
test_suite="test",
# dependency_links=[
# "https://github.com/tonycpsu/urwid_utils/tarball/master#egg=urwid_utils-0.0.5dev"
# ],
)