Skip to content
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.

Commit

Permalink
removed load of init in setup
Browse files Browse the repository at this point in the history
  • Loading branch information
balu committed Sep 22, 2019
1 parent a75392c commit 7bbd407
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@

from setuptools import setup, find_packages
import deconzpy


__version__ = "0.9.1"
__author__ = "balu-"
__url__ = "https://github.com/balu-/deconzpy"

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name="deconzpy",
version=deconzpy.__version__,
description=deconzpy.__doc__,
url=deconzpy.__url__,
author=deconzpy.__author__,
version=__version__,
description=__doc__,
url=__url__,
author=__author__,
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
Expand Down

0 comments on commit 7bbd407

Please sign in to comment.