Skip to content

Commit

Permalink
[v0.0.30] Make a release
Browse files Browse the repository at this point in the history
  • Loading branch information
manrajgrover committed Aug 1, 2020
1 parent 5e7e956 commit a5853cb
Showing 1 changed file with 17 additions and 19 deletions.
36 changes: 17 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
import io
from setuptools import setup, find_packages # pylint: disable=no-name-in-module,import-error
from setuptools import (
setup,
find_packages,
) # pylint: disable=no-name-in-module,import-error


def dependencies(file):
with open(file) as f:
return f.read().splitlines()


with io.open("README.md", encoding='utf-8') as infile:
with io.open("README.md", encoding="utf-8") as infile:
long_description = infile.read()

setup(
name='halo',
packages=find_packages(exclude=('tests', 'examples')),
version='0.0.29',
license='MIT',
description='Beautiful terminal spinners in Python',
name="halo",
packages=find_packages(exclude=("tests", "examples")),
version="0.0.30",
license="MIT",
description="Beautiful terminal spinners in Python",
long_description=long_description,
long_description_content_type="text/markdown",
author='Manraj Singh',
author_email='[email protected]',
url='https://github.com/manrajgrover/halo',
author="Manraj Singh",
author_email="[email protected]",
url="https://github.com/manrajgrover/halo",
keywords=[
"console",
"loading",
Expand All @@ -33,15 +36,10 @@ def dependencies(file):
"term",
"busy",
"wait",
"idle"
"idle",
],
install_requires=dependencies('requirements.txt'),
tests_require=dependencies('requirements-dev.txt'),
install_requires=dependencies("requirements.txt"),
tests_require=dependencies("requirements-dev.txt"),
include_package_data=True,
extras_require={
'ipython': [
'IPython==5.7.0',
'ipywidgets==7.1.0',
]
}
extras_require={"ipython": ["IPython==5.7.0", "ipywidgets==7.1.0",]},
)

0 comments on commit a5853cb

Please sign in to comment.