-
Honza Mach authored
* Greatly improved module documentation * Code style improvements with the use of pylint tool * BC breaking refactoring to unify code style * Multiple minor bugfixes Note: I am well aware of the ugliness of such a huge commit. However all of the changes were done in a short time and as part of a single big feature upgrade and in my opinion in this case I can justify that, because all changes are related to one another.
Honza Mach authored* Greatly improved module documentation * Code style improvements with the use of pylint tool * BC breaking refactoring to unify code style * Multiple minor bugfixes Note: I am well aware of the ugliness of such a huge commit. However all of the changes were done in a short time and as part of a single big feature upgrade and in my opinion in this case I can justify that, because all changes are related to one another.
setup.py 1.56 KiB
#!/usr/bin/python3
# -*- coding: utf-8 -*-
#-------------------------------------------------------------------------------
# Copyright (C) since 2016 Jan Mach <email@jan-mach.cz>
# Use of this source is governed by the MIT license, see LICENSE file.
#-------------------------------------------------------------------------------
# Resources:
# https://packaging.python.org/en/latest/
# https://python-packaging.readthedocs.io/en/latest/index.html
# 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 = 'pyzenkit',
version = '0.32',
description = 'Python 3 script and daemon toolkit',
long_description = long_description,
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Environment :: Console',
],
keywords = 'library console script daemon',
url = 'https://github.com/honzamach/pyzenkit',
author = 'Jan Mach',
author_email = 'email@jan-mach.cz',
license = 'MIT',
packages = [
'pyzenkit'
],
test_suite = 'nose.collector',
tests_require = [
'nose'
],
install_requires=[
'pydgets',
'jsonschema'
],
include_package_data = True,
zip_safe = False
)