Skip to content
Snippets Groups Projects
Commit f4ae43f8 authored by Jan Mach's avatar Jan Mach
Browse files

First alpha version, working, but still needs a lot of improvements.

parent fd8578fa
No related branches found
No related tags found
No related merge requests found
[Dolphin]
PreviewsShown=true
Timestamp=2016,5,4,9,46,37
Version=3
[Settings]
HiddenFilesShown=true
# Compiled python modules.
*.pyc
# Setuptools distribution folder.
/dist/
/build/
# Python egg metadata, regenerated from source files by setuptools.
/*.egg-info
File moved
# file GENERATED by distutils, do NOT edit
setup.py
pydgets/__init__.py
pydgets/cowsay.py
pydgets/widgets.py
Pydgets
=======================
Python3 command line widget library.
#https://github.com/piuccio/cowsay
This diff is collapsed.
setup.py 0 → 100644
#!/usr/bin/python3
# -*- coding: utf-8 -*-
#-------------------------------------------------------------------------------
# Copyright (C) 2015-2016 Jan Mach <honza.mach.ml@gmail.com>
# Use of this source is governed by the MIT license, see LICENSE file.
#-------------------------------------------------------------------------------
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'pydgets',
version = '0.3',
description = 'Console widget library for Python 3',
long_description = long_description,
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Environment :: Console',
],
keywords = 'library console widgets',
url = 'https://github.com/honzamach/pydgets',
author = 'Jan Mach',
author_email = 'email@jan-mach.cz',
license = 'MIT',
packages = ['pydgets'],
include_package_data = True,
zip_safe = False
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment