forked from manrajgrover/halo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
54 lines (49 loc) · 1.46 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
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")),
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="[email protected]",
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==5.7.0", "ipywidgets==7.1.0",]},
)