-
Notifications
You must be signed in to change notification settings - Fork 149
/
setup.py
59 lines (54 loc) · 1.52 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import io
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:
long_description = infile.read()
setup(
name="halo",
packages=find_packages(exclude=("tests", "examples", "art")),
version="0.0.31",
license="MIT",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
],
python_requires=">=3.4",
description="Beautiful terminal spinners in Python",
long_description=long_description,
long_description_content_type="text/markdown",
author="Manraj Singh",
author_email="manrajsinghgrover@gmail.com",
url="https://github.com/manrajgrover/halo",
keywords=[
"console",
"loading",
"indicator",
"progress",
"cli",
"spinner",
"spinners",
"terminal",
"term",
"busy",
"wait",
"idle",
],
install_requires=dependencies("requirements.txt"),
tests_require=dependencies("requirements-dev.txt"),
include_package_data=True,
extras_require={
"ipython": [
"IPython>=8.12.3",
"ipywidgets>=8.1.3",
]
},
)